From 165ea616fb2d241c7523bb24608ce9d260efdfab Mon Sep 17 00:00:00 2001 From: Mitchell Date: Tue, 30 May 2023 23:49:19 -0500 Subject: [PATCH] wip - add my split config --- .gitignore | 3 +- my_configs/split.yaml | 157 +++ run.sh | 2 + src/footprints/index.js | 39 +- src/footprints/promicro_pretty.js | 1978 +++++++++++++++++++++++++++++ 5 files changed, 2159 insertions(+), 20 deletions(-) create mode 100644 my_configs/split.yaml create mode 100755 run.sh create mode 100644 src/footprints/promicro_pretty.js diff --git a/.gitignore b/.gitignore index 8e410d4..59519d8 100644 --- a/.gitignore +++ b/.gitignore @@ -117,4 +117,5 @@ dist # Project specific output -temp* \ No newline at end of file +temp* +/output_folder diff --git a/my_configs/split.yaml b/my_configs/split.yaml new file mode 100644 index 0000000..bb85f39 --- /dev/null +++ b/my_configs/split.yaml @@ -0,0 +1,157 @@ +units: + # Proxy Spacing Variables + kx: cx + ky: cy + # Padding Variables + px: kx + 4 + py: ky + 4 + # Double Padding Variables + dpx: kx + 8 + dpy: ky + 8 +points: + zones: + # The primary 6x4 key matrix, plus 3 modifiers. + matrix: + # Position in center of KiCAD workspace. + anchor: + shift: [100, -100] + # Choc spacing + key: + padding: 1ky + spread: 1kx + columns: + # Hide the first two mods and the last mod. + # Provide a Sofle-like column stagger. + outer: + rows.mod.skip: true + key.column_net: P14 + pinky: + rows.mod.skip: true + key.column_net: P16 + ring: + key: + stagger: 5 + column_net: P10 + rows.mod.column_net: P16 + middle: + key: + stagger: 2.5 + column_net: P7 + rows.mod.column_net: P10 + index: + key: + stagger: -2.5 + column_net: P8 + rows.mod.column_net: P7 + inner: + rows.mod.skip: true + key: + stagger: -2.5 + column_net: P9 + rows: + # Four main rows, one partial row. + mod: + row_net: P15 + mirror.row_net: P6 + bottom: + row_net: P18 + mirror.row_net: P5 + home: + row_net: P19 + mirror.row_net: P4 + top: + row_net: P20 + mirror.row_net: P0 + num: + row_net: P21 + mirror.row_net: P1 + # Thumb cluster for Layer and Space keys. + thumbs: + # Choc spacing + key: + padding: 1ky + spread: 1kx + # Place thumbs where the inner mod would go. + anchor: + ref: matrix_inner_mod + shift: [2, -2] + columns: + # Fan thumbs out by -15 degrees. + layer: + key: + splay: -15 + column_net: P8 + # Spacebar uses a 1.5 wide key. + space: + key: + width: 1.5kx + splay: 75 + shift: [2.5, -3.25] + column_net: P9 + rows: + # Thumbs only have one row. + cluster: + row_net: P15 + mirror.row_net: P6 +outlines: + # Pure key outline. + raw: + - what: rectangle + where: true + size: [px, py] + corner: 2 + - what: rectangle + size: [50, 85] + adjust: + ref: matrix_inner_num + shift: [12.8, -29.8] + corner: 3 + cutout: + - what: outline + name: raw + fillet: 1 + keys: + - what: rectangle + where: true + size: [kx-0.5, ky-0.5] + +pcbs: + tutorial: + outlines: + main: + outline: cutout + footprints: + # Hotswap Choc keys. + choc_hotswap: + what: choc + where: true + params: + keycaps: true + reverse: false + hotswap: true + from: "{{column_net}}" + to: "{{colrow}}" + # Through Hole or SMD Diodes + diode: + what: diode + where: true + params: + from: "{{colrow}}" + to: "{{row_net}}" + adjust: + shift: [0, -5] + promicro: + what: promicro_pretty + adjust: + ref: matrix_inner_num + shift: [23.5, -10] + rotate: -90 + # Four Pin Reset Button + reset: + what: button + params: + from: GND + to: RST + adjust: + ref: matrix_inner_num + shift: [23.5, -30] diff --git a/run.sh b/run.sh new file mode 100755 index 0000000..b400324 --- /dev/null +++ b/run.sh @@ -0,0 +1,2 @@ +node src/cli.js ./my_configs/split.yaml -o output_folder +pcbnew ./output_folder/pcbs/tutorial.kicad_pcb diff --git a/src/footprints/index.js b/src/footprints/index.js index 6e63fbf..2a53da1 100644 --- a/src/footprints/index.js +++ b/src/footprints/index.js @@ -1,20 +1,21 @@ module.exports = { - alps: require('./alps'), - button: require('./button'), - choc: require('./choc'), - chocmini: require('./chocmini'), - diode: require('./diode'), - jstph: require('./jstph'), - jumper: require('./jumper'), - mx: require('./mx'), - oled: require('./oled'), - omron: require('./omron'), - pad: require('./pad'), - promicro: require('./promicro'), - rgb: require('./rgb'), - rotary: require('./rotary'), - scrollwheel: require('./scrollwheel'), - slider: require('./slider'), - trrs: require('./trrs'), - via: require('./via'), -} \ No newline at end of file + alps: require("./alps"), + button: require("./button"), + choc: require("./choc"), + chocmini: require("./chocmini"), + diode: require("./diode"), + jstph: require("./jstph"), + jumper: require("./jumper"), + mx: require("./mx"), + oled: require("./oled"), + omron: require("./omron"), + pad: require("./pad"), + promicro: require("./promicro"), + promicro_pretty: require("./promicro_pretty"), + rgb: require("./rgb"), + rotary: require("./rotary"), + scrollwheel: require("./scrollwheel"), + slider: require("./slider"), + trrs: require("./trrs"), + via: require("./via"), +}; diff --git a/src/footprints/promicro_pretty.js b/src/footprints/promicro_pretty.js new file mode 100644 index 0000000..ac4f9d6 --- /dev/null +++ b/src/footprints/promicro_pretty.js @@ -0,0 +1,1978 @@ +// Arduino ProMicro atmega32u4au +// Take care to bridge the pads on the correct side of the pcb +// To orient the MCU up, meaning power led faces away from pcb, bridge the pads on the side of the pcb with the MCU +// To orient the MCU down, meaning power led faces the pcb, bridge the pads on the opposite side of the pcb + +module.exports = { + params: { + designator: "MCU", + RAW: { type: "net", value: "RAW" }, + GND: { type: "net", value: "GND" }, + RST: { type: "net", value: "RST" }, + VCC: { type: "net", value: "VCC" }, + P21: { type: "net", value: "P21" }, + P20: { type: "net", value: "P20" }, + P19: { type: "net", value: "P19" }, + P18: { type: "net", value: "P18" }, + P15: { type: "net", value: "P15" }, + P14: { type: "net", value: "P14" }, + P16: { type: "net", value: "P16" }, + P10: { type: "net", value: "P10" }, + P1: { type: "net", value: "P1" }, + P0: { type: "net", value: "P0" }, + P2: { type: "net", value: "P2" }, + P3: { type: "net", value: "P3" }, + P4: { type: "net", value: "P4" }, + P5: { type: "net", value: "P5" }, + P6: { type: "net", value: "P6" }, + P7: { type: "net", value: "P7" }, + P8: { type: "net", value: "P8" }, + P9: { type: "net", value: "P9" }, + }, + body: (p) => { + return ` + (module ProMicro (layer F.Cu) (tedit 6135B927) + ${p.at /* parametric position */} + + ${"" /* footprint description, tags and reference */} + (descr "Solder-jumper reversible Pro Micro footprint") + (tags "promicro ProMicro reversible solder jumper") + (fp_text reference "${p.ref}" (at -16.256 -0.254 ${ + p.rot + 90 + }) (layer F.SilkS) ${p.ref_hide} + (effects (font (size 1 1) (thickness 0.15))) + ) + + ${ + "" /* extra border around "RAW", in case the rectangular shape is not distinctive enough */ + } + (fp_line (start -15.24 6.35) (end -12.7 6.35) (layer F.SilkS) (width 0.15)) + (fp_line (start -15.24 6.35) (end -15.24 8.89) (layer F.SilkS) (width 0.15)) + (fp_line (start -12.7 6.35) (end -12.7 8.89) (layer F.SilkS) (width 0.15)) + (fp_line (start -12.7 8.89) (end -15.24 8.89) (layer F.SilkS) (width 0.15)) + (fp_line (start -15.24 -6.35) (end -12.7 -6.35) (layer B.SilkS) (width 0.15)) + (fp_line (start -15.24 -6.35) (end -15.24 -8.89) (layer B.SilkS) (width 0.15)) + (fp_line (start -12.7 -6.35) (end -12.7 -8.89) (layer B.SilkS) (width 0.15)) + (fp_line (start -12.7 -8.89) (end -15.24 -8.89) (layer B.SilkS) (width 0.15)) + + ${"" /* illustration of the (possible) USB port overhang */} + (fp_line (start -19.304 -3.81) (end -14.224 -3.81) (layer Dwgs.User) (width 0.15)) + (fp_line (start -19.304 3.81) (end -19.304 -3.81) (layer Dwgs.User) (width 0.15)) + (fp_line (start -14.224 3.81) (end -19.304 3.81) (layer Dwgs.User) (width 0.15)) + (fp_line (start -14.224 -3.81) (end -14.224 3.81) (layer Dwgs.User) (width 0.15)) + + (fp_circle (center 13.97 0.762) (end 14.095 0.762) (layer B.Mask) (width 0.25)) + (fp_circle (center 13.97 0.762) (end 14.095 0.762) (layer F.Mask) (width 0.25)) + (fp_circle (center 13.97 -0.762) (end 14.095 -0.762) (layer B.Mask) (width 0.25)) + (fp_circle (center 13.97 -0.762) (end 14.095 -0.762) (layer F.Mask) (width 0.25)) + (fp_circle (center 11.43 0.762) (end 11.555 0.762) (layer B.Mask) (width 0.25)) + (fp_circle (center 11.43 0.762) (end 11.555 0.762) (layer F.Mask) (width 0.25)) + (fp_circle (center 11.43 -0.762) (end 11.555 -0.762) (layer B.Mask) (width 0.25)) + (fp_circle (center 11.43 -0.762) (end 11.555 -0.762) (layer F.Mask) (width 0.25)) + (fp_circle (center 8.89 0.762) (end 9.015 0.762) (layer B.Mask) (width 0.25)) + (fp_circle (center 8.89 0.762) (end 9.015 0.762) (layer F.Mask) (width 0.25)) + (fp_circle (center 8.89 -0.762) (end 9.015 -0.762) (layer B.Mask) (width 0.25)) + (fp_circle (center 8.89 -0.762) (end 9.015 -0.762) (layer F.Mask) (width 0.25)) + (fp_circle (center 6.35 0.762) (end 6.475 0.762) (layer B.Mask) (width 0.25)) + (fp_circle (center 6.35 0.762) (end 6.475 0.762) (layer F.Mask) (width 0.25)) + (fp_circle (center 6.35 -0.762) (end 6.475 -0.762) (layer B.Mask) (width 0.25)) + (fp_circle (center 6.35 -0.762) (end 6.475 -0.762) (layer F.Mask) (width 0.25)) + (fp_circle (center 3.81 0.762) (end 3.935 0.762) (layer B.Mask) (width 0.25)) + (fp_circle (center 3.81 0.762) (end 3.935 0.762) (layer F.Mask) (width 0.25)) + (fp_circle (center 3.81 -0.762) (end 3.935 -0.762) (layer B.Mask) (width 0.25)) + (fp_circle (center 3.81 -0.762) (end 3.935 -0.762) (layer F.Mask) (width 0.25)) + (fp_circle (center 1.27 0.762) (end 1.395 0.762) (layer B.Mask) (width 0.25)) + (fp_circle (center 1.27 0.762) (end 1.395 0.762) (layer F.Mask) (width 0.25)) + (fp_circle (center 1.27 -0.762) (end 1.395 -0.762) (layer B.Mask) (width 0.25)) + (fp_circle (center 1.27 -0.762) (end 1.395 -0.762) (layer F.Mask) (width 0.25)) + (fp_circle (center -1.27 0.762) (end -1.145 0.762) (layer B.Mask) (width 0.25)) + (fp_circle (center -1.27 0.762) (end -1.145 0.762) (layer F.Mask) (width 0.25)) + (fp_circle (center -1.27 -0.762) (end -1.145 -0.762) (layer B.Mask) (width 0.25)) + (fp_circle (center -1.27 -0.762) (end -1.145 -0.762) (layer F.Mask) (width 0.25)) + (fp_circle (center -3.81 0.762) (end -3.685 0.762) (layer B.Mask) (width 0.25)) + (fp_circle (center -3.81 0.762) (end -3.685 0.762) (layer F.Mask) (width 0.25)) + (fp_circle (center -3.81 -0.762) (end -3.685 -0.762) (layer B.Mask) (width 0.25)) + (fp_circle (center -3.81 -0.762) (end -3.685 -0.762) (layer F.Mask) (width 0.25)) + (fp_circle (center -6.35 0.762) (end -6.225 0.762) (layer B.Mask) (width 0.25)) + (fp_circle (center -6.35 0.762) (end -6.225 0.762) (layer F.Mask) (width 0.25)) + (fp_circle (center -6.35 -0.762) (end -6.225 -0.762) (layer B.Mask) (width 0.25)) + (fp_circle (center -6.35 -0.762) (end -6.225 -0.762) (layer F.Mask) (width 0.25)) + (fp_circle (center -8.89 0.762) (end -8.765 0.762) (layer B.Mask) (width 0.25)) + (fp_circle (center -8.89 0.762) (end -8.765 0.762) (layer F.Mask) (width 0.25)) + (fp_circle (center -8.89 -0.762) (end -8.765 -0.762) (layer B.Mask) (width 0.25)) + (fp_circle (center -8.89 -0.762) (end -8.765 -0.762) (layer F.Mask) (width 0.25)) + (fp_circle (center -11.43 -0.762) (end -11.305 -0.762) (layer B.Mask) (width 0.25)) + (fp_circle (center -11.43 -0.762) (end -11.305 -0.762) (layer F.Mask) (width 0.25)) + (fp_circle (center -11.43 0.762) (end -11.305 0.762) (layer B.Mask) (width 0.25)) + (fp_circle (center -11.43 0.762) (end -11.305 0.762) (layer F.Mask) (width 0.25)) + (fp_circle (center -13.97 0.762) (end -13.845 0.762) (layer B.Mask) (width 0.25)) + (fp_circle (center -13.97 0.762) (end -13.845 0.762) (layer F.Mask) (width 0.25)) + (fp_circle (center -13.97 -0.762) (end -13.845 -0.762) (layer B.Mask) (width 0.25)) + (fp_circle (center -13.97 -0.762) (end -13.845 -0.762) (layer F.Mask) (width 0.25)) + (fp_poly (pts (xy 14.478 -5.08) (xy 13.462 -5.08) (xy 13.462 -6.096) (xy 14.478 -6.096)) (layer B.Mask) (width 0.1)) + (fp_poly (pts (xy 11.938 -5.08) (xy 10.922 -5.08) (xy 10.922 -6.096) (xy 11.938 -6.096)) (layer B.Mask) (width 0.1)) + (fp_poly (pts (xy 9.398 -5.08) (xy 8.382 -5.08) (xy 8.382 -6.096) (xy 9.398 -6.096)) (layer B.Mask) (width 0.1)) + (fp_poly (pts (xy 6.858 -5.08) (xy 5.842 -5.08) (xy 5.842 -6.096) (xy 6.858 -6.096)) (layer B.Mask) (width 0.1)) + (fp_poly (pts (xy 4.318 -5.08) (xy 3.302 -5.08) (xy 3.302 -6.096) (xy 4.318 -6.096)) (layer B.Mask) (width 0.1)) + (fp_poly (pts (xy 1.778 -5.08) (xy 0.762 -5.08) (xy 0.762 -6.096) (xy 1.778 -6.096)) (layer B.Mask) (width 0.1)) + (fp_poly (pts (xy -0.762 -5.08) (xy -1.778 -5.08) (xy -1.778 -6.096) (xy -0.762 -6.096)) (layer B.Mask) (width 0.1)) + (fp_poly (pts (xy -3.302 -5.08) (xy -4.318 -5.08) (xy -4.318 -6.096) (xy -3.302 -6.096)) (layer B.Mask) (width 0.1)) + (fp_poly (pts (xy -5.842 -5.08) (xy -6.858 -5.08) (xy -6.858 -6.096) (xy -5.842 -6.096)) (layer B.Mask) (width 0.1)) + (fp_poly (pts (xy -8.382 -5.08) (xy -9.398 -5.08) (xy -9.398 -6.096) (xy -8.382 -6.096)) (layer B.Mask) (width 0.1)) + (fp_poly (pts (xy -10.922 -5.08) (xy -11.938 -5.08) (xy -11.938 -6.096) (xy -10.922 -6.096)) (layer B.Mask) (width 0.1)) + (fp_poly (pts (xy -13.462 -5.08) (xy -14.478 -5.08) (xy -14.478 -6.096) (xy -13.462 -6.096)) (layer B.Mask) (width 0.1)) + (fp_poly (pts (xy 13.462 5.08) (xy 14.478 5.08) (xy 14.478 6.096) (xy 13.462 6.096)) (layer B.Mask) (width 0.1)) + (fp_poly (pts (xy 10.922 5.08) (xy 11.938 5.08) (xy 11.938 6.096) (xy 10.922 6.096)) (layer B.Mask) (width 0.1)) + (fp_poly (pts (xy 8.382 5.08) (xy 9.398 5.08) (xy 9.398 6.096) (xy 8.382 6.096)) (layer B.Mask) (width 0.1)) + (fp_poly (pts (xy 5.842 5.08) (xy 6.858 5.08) (xy 6.858 6.096) (xy 5.842 6.096)) (layer B.Mask) (width 0.1)) + (fp_poly (pts (xy 3.302 5.08) (xy 4.318 5.08) (xy 4.318 6.096) (xy 3.302 6.096)) (layer B.Mask) (width 0.1)) + (fp_poly (pts (xy 0.762 5.08) (xy 1.778 5.08) (xy 1.778 6.096) (xy 0.762 6.096)) (layer B.Mask) (width 0.1)) + (fp_poly (pts (xy -1.778 5.08) (xy -0.762 5.08) (xy -0.762 6.096) (xy -1.778 6.096)) (layer B.Mask) (width 0.1)) + (fp_poly (pts (xy -4.318 5.08) (xy -3.302 5.08) (xy -3.302 6.096) (xy -4.318 6.096)) (layer B.Mask) (width 0.1)) + (fp_poly (pts (xy -6.858 5.08) (xy -5.842 5.08) (xy -5.842 6.096) (xy -6.858 6.096)) (layer B.Mask) (width 0.1)) + (fp_poly (pts (xy -9.398 5.08) (xy -8.382 5.08) (xy -8.382 6.096) (xy -9.398 6.096)) (layer B.Mask) (width 0.1)) + (fp_poly (pts (xy -11.938 5.08) (xy -10.922 5.08) (xy -10.922 6.096) (xy -11.938 6.096)) (layer B.Mask) (width 0.1)) + (fp_poly (pts (xy -14.478 5.08) (xy -13.462 5.08) (xy -13.462 6.096) (xy -14.478 6.096)) (layer B.Mask) (width 0.1)) + (fp_poly (pts (xy -13.462 -5.08) (xy -14.478 -5.08) (xy -14.478 -6.096) (xy -13.462 -6.096)) (layer F.Mask) (width 0.1)) + (fp_poly (pts (xy 1.778 -5.08) (xy 0.762 -5.08) (xy 0.762 -6.096) (xy 1.778 -6.096)) (layer F.Mask) (width 0.1)) + (fp_poly (pts (xy -10.922 -5.08) (xy -11.938 -5.08) (xy -11.938 -6.096) (xy -10.922 -6.096)) (layer F.Mask) (width 0.1)) + (fp_poly (pts (xy -8.382 -5.08) (xy -9.398 -5.08) (xy -9.398 -6.096) (xy -8.382 -6.096)) (layer F.Mask) (width 0.1)) + (fp_poly (pts (xy -3.302 -5.08) (xy -4.318 -5.08) (xy -4.318 -6.096) (xy -3.302 -6.096)) (layer F.Mask) (width 0.1)) + (fp_poly (pts (xy -0.762 -5.08) (xy -1.778 -5.08) (xy -1.778 -6.096) (xy -0.762 -6.096)) (layer F.Mask) (width 0.1)) + (fp_poly (pts (xy 6.858 -5.08) (xy 5.842 -5.08) (xy 5.842 -6.096) (xy 6.858 -6.096)) (layer F.Mask) (width 0.1)) + (fp_poly (pts (xy 11.938 -5.08) (xy 10.922 -5.08) (xy 10.922 -6.096) (xy 11.938 -6.096)) (layer F.Mask) (width 0.1)) + (fp_poly (pts (xy -5.842 -5.08) (xy -6.858 -5.08) (xy -6.858 -6.096) (xy -5.842 -6.096)) (layer F.Mask) (width 0.1)) + (fp_poly (pts (xy 4.318 -5.08) (xy 3.302 -5.08) (xy 3.302 -6.096) (xy 4.318 -6.096)) (layer F.Mask) (width 0.1)) + (fp_poly (pts (xy 9.398 -5.08) (xy 8.382 -5.08) (xy 8.382 -6.096) (xy 9.398 -6.096)) (layer F.Mask) (width 0.1)) + (fp_poly (pts (xy 14.478 -5.08) (xy 13.462 -5.08) (xy 13.462 -6.096) (xy 14.478 -6.096)) (layer F.Mask) (width 0.1)) + (fp_poly (pts (xy 13.462 5.08) (xy 14.478 5.08) (xy 14.478 6.096) (xy 13.462 6.096)) (layer F.Mask) (width 0.1)) + (fp_poly (pts (xy 10.922 5.08) (xy 11.938 5.08) (xy 11.938 6.096) (xy 10.922 6.096)) (layer F.Mask) (width 0.1)) + (fp_poly (pts (xy 8.382 5.08) (xy 9.398 5.08) (xy 9.398 6.096) (xy 8.382 6.096)) (layer F.Mask) (width 0.1)) + (fp_poly (pts (xy 5.842 5.08) (xy 6.858 5.08) (xy 6.858 6.096) (xy 5.842 6.096)) (layer F.Mask) (width 0.1)) + (fp_poly (pts (xy 3.302 5.08) (xy 4.318 5.08) (xy 4.318 6.096) (xy 3.302 6.096)) (layer F.Mask) (width 0.1)) + (fp_poly (pts (xy 0.762 5.08) (xy 1.778 5.08) (xy 1.778 6.096) (xy 0.762 6.096)) (layer F.Mask) (width 0.1)) + (fp_poly (pts (xy -1.778 5.08) (xy -0.762 5.08) (xy -0.762 6.096) (xy -1.778 6.096)) (layer F.Mask) (width 0.1)) + (fp_poly (pts (xy -4.318 5.08) (xy -3.302 5.08) (xy -3.302 6.096) (xy -4.318 6.096)) (layer F.Mask) (width 0.1)) + (fp_poly (pts (xy -6.858 5.08) (xy -5.842 5.08) (xy -5.842 6.096) (xy -6.858 6.096)) (layer F.Mask) (width 0.1)) + (fp_poly (pts (xy -9.398 5.08) (xy -8.382 5.08) (xy -8.382 6.096) (xy -9.398 6.096)) (layer F.Mask) (width 0.1)) + (fp_poly (pts (xy -11.938 5.08) (xy -10.922 5.08) (xy -10.922 6.096) (xy -11.938 6.096)) (layer F.Mask) (width 0.1)) + (fp_poly (pts (xy -14.478 5.08) (xy -13.462 5.08) (xy -13.462 6.096) (xy -14.478 6.096)) (layer F.Mask) (width 0.1)) + (pad 2 smd custom (at -11.43 -0.762 ${p.rot}) (size 0.25 0.25) (layers F.Cu) + (zone_connect 0) + (options (clearance outline) (anchor circle)) + (primitives + (gr_line (start 0 0) (end 0.766 -0.766) (width 0.25)) + (gr_line (start 0.766 -0.766) (end 0.766 -3.298) (width 0.25)) + (gr_line (start 0.766 -3.298) (end 0 -4.064) (width 0.25)) + ) ${p.GND.str}) + (pad "" thru_hole circle (at -13.97 7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask) + (zone_connect 0)) + (pad "" thru_hole circle (at -11.43 7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask)) + (pad "" thru_hole circle (at -8.89 7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask)) + (pad "" thru_hole circle (at -6.35 7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask)) + (pad "" thru_hole circle (at -3.81 7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask)) + (pad "" thru_hole circle (at -1.27 7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask)) + (pad "" thru_hole circle (at 1.27 7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask)) + (pad "" thru_hole circle (at 3.81 7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask)) + (pad "" thru_hole circle (at 6.35 7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask)) + (pad "" thru_hole circle (at 8.89 7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask)) + (pad "" thru_hole circle (at 11.43 7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask)) + (pad "" thru_hole circle (at 13.97 7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask)) + (pad "" thru_hole circle (at 13.97 -7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask)) + (pad "" thru_hole circle (at 11.43 -7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask)) + (pad "" thru_hole circle (at 8.89 -7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask)) + (pad "" thru_hole circle (at 6.35 -7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask)) + (pad "" thru_hole circle (at 3.81 -7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask)) + (pad "" thru_hole circle (at 1.27 -7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask)) + (pad "" thru_hole circle (at -1.27 -7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask)) + (pad "" thru_hole circle (at -3.81 -7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask)) + (pad "" thru_hole circle (at -6.35 -7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask)) + (pad "" thru_hole circle (at -8.89 -7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask)) + (pad "" thru_hole circle (at -11.43 -7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask)) + (pad "" thru_hole circle (at -13.97 -7.62) (size 1.6 1.6) (drill 1.1) (layers *.Cu *.Mask)) + (pad "" smd custom (at -13.97 5.842 ${ + p.rot + 180 + }) (size 0.1 0.1) (layers F.Cu F.Mask) + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 -0.4) (xy -0.6 -0.4) (xy -0.6 -0.2) (xy 0 0.4) (xy 0.6 -0.2) + ) (width 0)) + )) + (pad 24 smd custom (at -13.97 4.826 ${ + p.rot + 180 + }) (size 1.2 0.5) (layers F.Cu F.Mask) ${p.P1.str} + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 0) (xy -0.6 0) (xy -0.6 -1) (xy 0 -0.4) (xy 0.6 -1) + ) (width 0)) + )) + (pad "" smd custom (at -13.97 6.35 ${ + p.rot + 180 + }) (size 0.25 1) (layers F.Cu) + (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + )) + (pad "" thru_hole rect (at -13.97 7.62 ${ + p.rot + }) (size 1.6 1.6) (drill 1.1) (layers F.Cu F.Mask) + (zone_connect 0)) + (pad "" thru_hole rect (at -13.97 -7.62 ${ + p.rot + }) (size 1.6 1.6) (drill 1.1) (layers B.Cu B.Mask) + (zone_connect 0)) + (pad "" smd custom (at -11.43 6.35 ${ + p.rot + 180 + }) (size 0.25 1) (layers F.Cu) + (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + )) + (pad "" smd custom (at -11.43 5.842 ${ + p.rot + 180 + }) (size 0.1 0.1) (layers F.Cu F.Mask) + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 -0.4) (xy -0.6 -0.4) (xy -0.6 -0.2) (xy 0 0.4) (xy 0.6 -0.2) + ) (width 0)) + )) + (pad 23 smd custom (at -11.43 4.826 ${ + p.rot + 180 + }) (size 1.2 0.5) (layers F.Cu F.Mask) ${p.P0.str} + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 0) (xy -0.6 0) (xy -0.6 -1) (xy 0 -0.4) (xy 0.6 -1) + ) (width 0)) + )) + (pad "" smd custom (at -8.89 6.35 ${ + p.rot + 180 + }) (size 0.25 1) (layers F.Cu) + (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + )) + (pad "" smd custom (at -8.89 5.842 ${ + p.rot + 180 + }) (size 0.1 0.1) (layers F.Cu F.Mask) + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 -0.4) (xy -0.6 -0.4) (xy -0.6 -0.2) (xy 0 0.4) (xy 0.6 -0.2) + ) (width 0)) + )) + (pad 22 smd custom (at -8.89 4.826 ${ + p.rot + 180 + }) (size 1.2 0.5) (layers F.Cu F.Mask) ${p.GND.str} + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 0) (xy -0.6 0) (xy -0.6 -1) (xy 0 -0.4) (xy 0.6 -1) + ) (width 0)) + )) + (pad "" smd custom (at -6.35 6.35 ${ + p.rot + 180 + }) (size 0.25 1) (layers F.Cu) + (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + )) + (pad "" smd custom (at -6.35 5.842 ${ + p.rot + 180 + }) (size 0.1 0.1) (layers F.Cu F.Mask) + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 -0.4) (xy -0.6 -0.4) (xy -0.6 -0.2) (xy 0 0.4) (xy 0.6 -0.2) + ) (width 0)) + )) + (pad 21 smd custom (at -6.35 4.826 ${ + p.rot + 180 + }) (size 1.2 0.5) (layers F.Cu F.Mask) ${p.GND.str} + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 0) (xy -0.6 0) (xy -0.6 -1) (xy 0 -0.4) (xy 0.6 -1) + ) (width 0)) + )) + (pad "" smd custom (at -3.81 6.35 ${ + p.rot + 180 + }) (size 0.25 1) (layers F.Cu) + (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + )) + (pad "" smd custom (at -3.81 5.842 ${ + p.rot + 180 + }) (size 0.1 0.1) (layers F.Cu F.Mask) + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 -0.4) (xy -0.6 -0.4) (xy -0.6 -0.2) (xy 0 0.4) (xy 0.6 -0.2) + ) (width 0)) + )) + (pad 20 smd custom (at -3.81 4.826 ${ + p.rot + 180 + }) (size 1.2 0.5) (layers F.Cu F.Mask) ${p.P2.str} + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 0) (xy -0.6 0) (xy -0.6 -1) (xy 0 -0.4) (xy 0.6 -1) + ) (width 0)) + )) + (pad "" smd custom (at -1.27 6.35 ${ + p.rot + 180 + }) (size 0.25 1) (layers F.Cu) + (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + )) + (pad "" smd custom (at -1.27 5.842 ${ + p.rot + 180 + }) (size 0.1 0.1) (layers F.Cu F.Mask) + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 -0.4) (xy -0.6 -0.4) (xy -0.6 -0.2) (xy 0 0.4) (xy 0.6 -0.2) + ) (width 0)) + )) + (pad 19 smd custom (at -1.27 4.826 ${ + p.rot + 180 + }) (size 1.2 0.5) (layers F.Cu F.Mask) ${p.P3.str} + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 0) (xy -0.6 0) (xy -0.6 -1) (xy 0 -0.4) (xy 0.6 -1) + ) (width 0)) + )) + (pad "" smd custom (at 1.27 6.35 ${p.rot + 180}) (size 0.25 1) (layers F.Cu) + (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + )) + (pad "" smd custom (at 1.27 5.842 ${ + p.rot + 180 + }) (size 0.1 0.1) (layers F.Cu F.Mask) + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 -0.4) (xy -0.6 -0.4) (xy -0.6 -0.2) (xy 0 0.4) (xy 0.6 -0.2) + ) (width 0)) + )) + (pad 18 smd custom (at 1.27 4.826 ${ + p.rot + 180 + }) (size 1.2 0.5) (layers F.Cu F.Mask) ${p.P4.str} + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 0) (xy -0.6 0) (xy -0.6 -1) (xy 0 -0.4) (xy 0.6 -1) + ) (width 0)) + )) + (pad "" smd custom (at 3.81 6.35 ${p.rot + 180}) (size 0.25 1) (layers F.Cu) + (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + )) + (pad "" smd custom (at 3.81 5.842 ${ + p.rot + 180 + }) (size 0.1 0.1) (layers F.Cu F.Mask) + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 -0.4) (xy -0.6 -0.4) (xy -0.6 -0.2) (xy 0 0.4) (xy 0.6 -0.2) + ) (width 0)) + )) + (pad 17 smd custom (at 3.81 4.826 ${ + p.rot + 180 + }) (size 1.2 0.5) (layers F.Cu F.Mask) ${p.P5.str} + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 0) (xy -0.6 0) (xy -0.6 -1) (xy 0 -0.4) (xy 0.6 -1) + ) (width 0)) + )) + (pad "" smd custom (at 6.35 6.35 ${p.rot + 180}) (size 0.25 1) (layers F.Cu) + (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + )) + (pad "" smd custom (at 6.35 5.842 ${ + p.rot + 180 + }) (size 0.1 0.1) (layers F.Cu F.Mask) + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 -0.4) (xy -0.6 -0.4) (xy -0.6 -0.2) (xy 0 0.4) (xy 0.6 -0.2) + ) (width 0)) + )) + (pad 16 smd custom (at 6.35 4.826 ${ + p.rot + 180 + }) (size 1.2 0.5) (layers F.Cu F.Mask) ${p.P6.str} + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 0) (xy -0.6 0) (xy -0.6 -1) (xy 0 -0.4) (xy 0.6 -1) + ) (width 0)) + )) + (pad "" smd custom (at 8.89 6.35 ${p.rot + 180}) (size 0.25 1) (layers F.Cu) + (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + )) + (pad "" smd custom (at 8.89 5.842 ${ + p.rot + 180 + }) (size 0.1 0.1) (layers F.Cu F.Mask) + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 -0.4) (xy -0.6 -0.4) (xy -0.6 -0.2) (xy 0 0.4) (xy 0.6 -0.2) + ) (width 0)) + )) + (pad 15 smd custom (at 8.89 4.826 ${ + p.rot + 180 + }) (size 1.2 0.5) (layers F.Cu F.Mask) ${p.P7.str} + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 0) (xy -0.6 0) (xy -0.6 -1) (xy 0 -0.4) (xy 0.6 -1) + ) (width 0)) + )) + (pad "" smd custom (at 11.43 6.35 ${ + p.rot + 180 + }) (size 0.25 1) (layers F.Cu) + (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + )) + (pad "" smd custom (at 11.43 5.842 ${ + p.rot + 180 + }) (size 0.1 0.1) (layers F.Cu F.Mask) + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 -0.4) (xy -0.6 -0.4) (xy -0.6 -0.2) (xy 0 0.4) (xy 0.6 -0.2) + ) (width 0)) + )) + (pad 14 smd custom (at 11.43 4.826 ${ + p.rot + 180 + }) (size 1.2 0.5) (layers F.Cu F.Mask) ${p.P8.str} + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 0) (xy -0.6 0) (xy -0.6 -1) (xy 0 -0.4) (xy 0.6 -1) + ) (width 0)) + )) + (pad "" smd custom (at 13.97 6.35 ${ + p.rot + 180 + }) (size 0.25 1) (layers F.Cu) + (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + )) + (pad "" smd custom (at 13.97 5.842 ${ + p.rot + 180 + }) (size 0.1 0.1) (layers F.Cu F.Mask) + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 -0.4) (xy -0.6 -0.4) (xy -0.6 -0.2) (xy 0 0.4) (xy 0.6 -0.2) + ) (width 0)) + )) + (pad 13 smd custom (at 13.97 4.826 ${ + p.rot + 180 + }) (size 1.2 0.5) (layers F.Cu F.Mask) ${p.P9.str} + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 0) (xy -0.6 0) (xy -0.6 -1) (xy 0 -0.4) (xy 0.6 -1) + ) (width 0)) + )) + (pad 1 smd custom (at -13.97 -4.826 ${ + p.rot + }) (size 1.2 0.5) (layers F.Cu F.Mask) ${p.RAW.str} + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 0) (xy -0.6 0) (xy -0.6 -1) (xy 0 -0.4) (xy 0.6 -1) + ) (width 0)) + )) + (pad 3 smd custom (at -8.89 -4.826 ${ + p.rot + }) (size 1.2 0.5) (layers F.Cu F.Mask) ${p.RST.str} + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 0) (xy -0.6 0) (xy -0.6 -1) (xy 0 -0.4) (xy 0.6 -1) + ) (width 0)) + )) + (pad "" smd custom (at -8.89 -6.35 ${p.rot}) (size 0.25 1) (layers F.Cu) + (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + )) + (pad "" smd custom (at -8.89 -5.842 ${ + p.rot + }) (size 0.1 0.1) (layers F.Cu F.Mask) + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 -0.4) (xy -0.6 -0.4) (xy -0.6 -0.2) (xy 0 0.4) (xy 0.6 -0.2) + ) (width 0)) + )) + (pad "" smd custom (at -13.97 -5.842 ${ + p.rot + }) (size 0.1 0.1) (layers F.Cu F.Mask) + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 -0.4) (xy -0.6 -0.4) (xy -0.6 -0.2) (xy 0 0.4) (xy 0.6 -0.2) + ) (width 0)) + )) + (pad "" smd custom (at -11.43 -6.35 ${p.rot}) (size 0.25 1) (layers F.Cu) + (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + )) + (pad 2 smd custom (at -11.43 -4.826 ${ + p.rot + }) (size 1.2 0.5) (layers F.Cu F.Mask) ${p.GND.str} + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 0) (xy -0.6 0) (xy -0.6 -1) (xy 0 -0.4) (xy 0.6 -1) + ) (width 0)) + )) + (pad "" smd custom (at -13.97 -6.35 ${p.rot}) (size 0.25 1) (layers F.Cu) + (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + )) + (pad 4 smd custom (at -6.35 -4.826 ${ + p.rot + }) (size 1.2 0.5) (layers F.Cu F.Mask) ${p.VCC.str} + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 0) (xy -0.6 0) (xy -0.6 -1) (xy 0 -0.4) (xy 0.6 -1) + ) (width 0)) + )) + (pad "" smd custom (at -11.43 -5.842 ${ + p.rot + }) (size 0.1 0.1) (layers F.Cu F.Mask) + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 -0.4) (xy -0.6 -0.4) (xy -0.6 -0.2) (xy 0 0.4) (xy 0.6 -0.2) + ) (width 0)) + )) + (pad "" smd custom (at -6.35 -5.842 ${ + p.rot + }) (size 0.1 0.1) (layers F.Cu F.Mask) + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 -0.4) (xy -0.6 -0.4) (xy -0.6 -0.2) (xy 0 0.4) (xy 0.6 -0.2) + ) (width 0)) + )) + (pad 6 smd custom (at -1.27 -4.826 ${ + p.rot + }) (size 1.2 0.5) (layers F.Cu F.Mask) ${p.P20.str} + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 0) (xy -0.6 0) (xy -0.6 -1) (xy 0 -0.4) (xy 0.6 -1) + ) (width 0)) + )) + (pad 7 smd custom (at 1.27 -4.826 ${ + p.rot + }) (size 1.2 0.5) (layers F.Cu F.Mask) ${p.P19.str} + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 0) (xy -0.6 0) (xy -0.6 -1) (xy 0 -0.4) (xy 0.6 -1) + ) (width 0)) + )) + (pad "" smd custom (at 13.97 -6.35 ${p.rot}) (size 0.25 1) (layers F.Cu) + (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + )) + (pad "" smd custom (at 1.27 -5.842 ${ + p.rot + }) (size 0.1 0.1) (layers F.Cu F.Mask) + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 -0.4) (xy -0.6 -0.4) (xy -0.6 -0.2) (xy 0 0.4) (xy 0.6 -0.2) + ) (width 0)) + )) + (pad "" smd custom (at 8.89 -6.35 ${p.rot}) (size 0.25 1) (layers F.Cu) + (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + )) + (pad 8 smd custom (at 3.81 -4.826 ${ + p.rot + }) (size 1.2 0.5) (layers F.Cu F.Mask) ${p.P18.str} + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 0) (xy -0.6 0) (xy -0.6 -1) (xy 0 -0.4) (xy 0.6 -1) + ) (width 0)) + )) + (pad "" smd custom (at 1.27 -6.35 ${p.rot}) (size 0.25 1) (layers F.Cu) + (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + )) + (pad 12 smd custom (at 13.97 -4.826 ${ + p.rot + }) (size 1.2 0.5) (layers F.Cu F.Mask) ${p.P10.str} + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 0) (xy -0.6 0) (xy -0.6 -1) (xy 0 -0.4) (xy 0.6 -1) + ) (width 0)) + )) + (pad "" smd custom (at 3.81 -5.842 ${ + p.rot + }) (size 0.1 0.1) (layers F.Cu F.Mask) + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 -0.4) (xy -0.6 -0.4) (xy -0.6 -0.2) (xy 0 0.4) (xy 0.6 -0.2) + ) (width 0)) + )) + (pad "" smd custom (at 6.35 -6.35 ${p.rot}) (size 0.25 1) (layers F.Cu) + (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + )) + (pad "" smd custom (at 13.97 -5.842 ${ + p.rot + }) (size 0.1 0.1) (layers F.Cu F.Mask) + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 -0.4) (xy -0.6 -0.4) (xy -0.6 -0.2) (xy 0 0.4) (xy 0.6 -0.2) + ) (width 0)) + )) + (pad "" smd custom (at -3.81 -6.35 ${p.rot}) (size 0.25 1) (layers F.Cu) + (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + )) + (pad "" smd custom (at 3.81 -6.35 ${p.rot}) (size 0.25 1) (layers F.Cu) + (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + )) + (pad "" smd custom (at -1.27 -6.35 ${p.rot}) (size 0.25 1) (layers F.Cu) + (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + )) + (pad 9 smd custom (at 6.35 -4.826 ${ + p.rot + }) (size 1.2 0.5) (layers F.Cu F.Mask) ${p.P15.str} + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 0) (xy -0.6 0) (xy -0.6 -1) (xy 0 -0.4) (xy 0.6 -1) + ) (width 0)) + )) + (pad "" smd custom (at -6.35 -6.35 ${p.rot}) (size 0.25 1) (layers F.Cu) + (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + )) + (pad "" smd custom (at -3.81 -5.842 ${ + p.rot + }) (size 0.1 0.1) (layers F.Cu F.Mask) + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 -0.4) (xy -0.6 -0.4) (xy -0.6 -0.2) (xy 0 0.4) (xy 0.6 -0.2) + ) (width 0)) + )) + (pad "" smd custom (at -1.27 -5.842 ${ + p.rot + }) (size 0.1 0.1) (layers F.Cu F.Mask) + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 -0.4) (xy -0.6 -0.4) (xy -0.6 -0.2) (xy 0 0.4) (xy 0.6 -0.2) + ) (width 0)) + )) + (pad "" smd custom (at 6.35 -5.842 ${ + p.rot + }) (size 0.1 0.1) (layers F.Cu F.Mask) + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 -0.4) (xy -0.6 -0.4) (xy -0.6 -0.2) (xy 0 0.4) (xy 0.6 -0.2) + ) (width 0)) + )) + (pad 10 smd custom (at 8.89 -4.826 ${ + p.rot + }) (size 1.2 0.5) (layers F.Cu F.Mask) ${p.P14.str} + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 0) (xy -0.6 0) (xy -0.6 -1) (xy 0 -0.4) (xy 0.6 -1) + ) (width 0)) + )) + (pad "" smd custom (at 8.89 -5.842 ${ + p.rot + }) (size 0.1 0.1) (layers F.Cu F.Mask) + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 -0.4) (xy -0.6 -0.4) (xy -0.6 -0.2) (xy 0 0.4) (xy 0.6 -0.2) + ) (width 0)) + )) + (pad "" smd custom (at 11.43 -5.842 ${ + p.rot + }) (size 0.1 0.1) (layers F.Cu F.Mask) + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 -0.4) (xy -0.6 -0.4) (xy -0.6 -0.2) (xy 0 0.4) (xy 0.6 -0.2) + ) (width 0)) + )) + (pad 11 smd custom (at 11.43 -4.826 ${ + p.rot + }) (size 1.2 0.5) (layers F.Cu F.Mask) ${p.P16.str} + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 0) (xy -0.6 0) (xy -0.6 -1) (xy 0 -0.4) (xy 0.6 -1) + ) (width 0)) + )) + (pad "" smd custom (at 11.43 -6.35 ${p.rot}) (size 0.25 1) (layers F.Cu) + (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + )) + (pad 5 smd custom (at -3.81 -4.826 ${ + p.rot + }) (size 1.2 0.5) (layers F.Cu F.Mask) ${p.P21.str} + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 0) (xy -0.6 0) (xy -0.6 -1) (xy 0 -0.4) (xy 0.6 -1) + ) (width 0)) + )) + (pad "" smd custom (at -13.97 6.35 ${ + p.rot + 180 + }) (size 0.25 1) (layers B.Cu) + (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + )) + (pad 1 smd custom (at -13.97 4.826 ${ + p.rot + 180 + }) (size 1.2 0.5) (layers B.Cu B.Mask) ${p.RAW.str} + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 0) (xy -0.6 0) (xy -0.6 -1) (xy 0 -0.4) (xy 0.6 -1) + ) (width 0)) + )) + (pad "" smd custom (at -13.97 5.842 ${ + p.rot + 180 + }) (size 0.1 0.1) (layers B.Cu B.Mask) + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 -0.4) (xy -0.6 -0.4) (xy -0.6 -0.2) (xy 0 0.4) (xy 0.6 -0.2) + ) (width 0)) + )) + (pad "" smd custom (at -11.43 6.35 ${ + p.rot + 180 + }) (size 0.25 1) (layers B.Cu) + (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + )) + (pad "" smd custom (at -11.43 5.842 ${ + p.rot + 180 + }) (size 0.1 0.1) (layers B.Cu B.Mask) + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 -0.4) (xy -0.6 -0.4) (xy -0.6 -0.2) (xy 0 0.4) (xy 0.6 -0.2) + ) (width 0)) + )) + (pad 2 smd custom (at -11.43 4.826 ${ + p.rot + 180 + }) (size 1.2 0.5) (layers B.Cu B.Mask) + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 0) (xy -0.6 0) (xy -0.6 -1) (xy 0 -0.4) (xy 0.6 -1) + ) (width 0)) + )) + (pad "" smd custom (at -8.89 6.35 ${ + p.rot + 180 + }) (size 0.25 1) (layers B.Cu) + (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + )) + (pad "" smd custom (at -8.89 5.842 ${ + p.rot + 180 + }) (size 0.1 0.1) (layers B.Cu B.Mask) + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 -0.4) (xy -0.6 -0.4) (xy -0.6 -0.2) (xy 0 0.4) (xy 0.6 -0.2) + ) (width 0)) + )) + (pad 3 smd custom (at -8.89 4.826 ${ + p.rot + 180 + }) (size 1.2 0.5) (layers B.Cu B.Mask) ${p.RST.str} + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 0) (xy -0.6 0) (xy -0.6 -1) (xy 0 -0.4) (xy 0.6 -1) + ) (width 0)) + )) + (pad "" smd custom (at -6.35 6.35 ${ + p.rot + 180 + }) (size 0.25 1) (layers B.Cu) + (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + )) + (pad "" smd custom (at -6.35 5.842 ${ + p.rot + 180 + }) (size 0.1 0.1) (layers B.Cu B.Mask) + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 -0.4) (xy -0.6 -0.4) (xy -0.6 -0.2) (xy 0 0.4) (xy 0.6 -0.2) + ) (width 0)) + )) + (pad 4 smd custom (at -6.35 4.826 ${ + p.rot + 180 + }) (size 1.2 0.5) (layers B.Cu B.Mask) ${p.VCC.str} + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 0) (xy -0.6 0) (xy -0.6 -1) (xy 0 -0.4) (xy 0.6 -1) + ) (width 0)) + )) + (pad "" smd custom (at -3.81 6.35 ${ + p.rot + 180 + }) (size 0.25 1) (layers B.Cu) + (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + )) + (pad "" smd custom (at -3.81 5.842 ${ + p.rot + 180 + }) (size 0.1 0.1) (layers B.Cu B.Mask) + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 -0.4) (xy -0.6 -0.4) (xy -0.6 -0.2) (xy 0 0.4) (xy 0.6 -0.2) + ) (width 0)) + )) + (pad 5 smd custom (at -3.81 4.826 ${ + p.rot + 180 + }) (size 1.2 0.5) (layers B.Cu B.Mask) ${p.P21.str} + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 0) (xy -0.6 0) (xy -0.6 -1) (xy 0 -0.4) (xy 0.6 -1) + ) (width 0)) + )) + (pad "" smd custom (at -1.27 6.35 ${ + p.rot + 180 + }) (size 0.25 1) (layers B.Cu) + (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + )) + (pad "" smd custom (at -1.27 5.842 ${ + p.rot + 180 + }) (size 0.1 0.1) (layers B.Cu B.Mask) + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 -0.4) (xy -0.6 -0.4) (xy -0.6 -0.2) (xy 0 0.4) (xy 0.6 -0.2) + ) (width 0)) + )) + (pad 6 smd custom (at -1.27 4.826 ${ + p.rot + 180 + }) (size 1.2 0.5) (layers B.Cu B.Mask) ${p.P20.str} + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 0) (xy -0.6 0) (xy -0.6 -1) (xy 0 -0.4) (xy 0.6 -1) + ) (width 0)) + )) + (pad "" smd custom (at 1.27 6.35 ${p.rot + 180}) (size 0.25 1) (layers B.Cu) + (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + )) + (pad "" smd custom (at 1.27 5.842 ${ + p.rot + 180 + }) (size 0.1 0.1) (layers B.Cu B.Mask) + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 -0.4) (xy -0.6 -0.4) (xy -0.6 -0.2) (xy 0 0.4) (xy 0.6 -0.2) + ) (width 0)) + )) + (pad 7 smd custom (at 1.27 4.826 ${ + p.rot + 180 + }) (size 1.2 0.5) (layers B.Cu B.Mask) ${p.P19.str} + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 0) (xy -0.6 0) (xy -0.6 -1) (xy 0 -0.4) (xy 0.6 -1) + ) (width 0)) + )) + (pad "" smd custom (at 3.81 6.35 ${p.rot + 180}) (size 0.25 1) (layers B.Cu) + (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + )) + (pad "" smd custom (at 3.81 5.842 ${ + p.rot + 180 + }) (size 0.1 0.1) (layers B.Cu B.Mask) + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 -0.4) (xy -0.6 -0.4) (xy -0.6 -0.2) (xy 0 0.4) (xy 0.6 -0.2) + ) (width 0)) + )) + (pad 8 smd custom (at 3.81 4.826 ${ + p.rot + 180 + }) (size 1.2 0.5) (layers B.Cu B.Mask) ${p.P18.str} + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 0) (xy -0.6 0) (xy -0.6 -1) (xy 0 -0.4) (xy 0.6 -1) + ) (width 0)) + )) + (pad "" smd custom (at 6.35 6.35 ${p.rot + 180}) (size 0.25 1) (layers B.Cu) + (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + )) + (pad "" smd custom (at 6.35 5.842 ${ + p.rot + 180 + }) (size 0.1 0.1) (layers B.Cu B.Mask) + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 -0.4) (xy -0.6 -0.4) (xy -0.6 -0.2) (xy 0 0.4) (xy 0.6 -0.2) + ) (width 0)) + )) + (pad 9 smd custom (at 6.35 4.826 ${ + p.rot + 180 + }) (size 1.2 0.5) (layers B.Cu B.Mask) ${p.P15.str} + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 0) (xy -0.6 0) (xy -0.6 -1) (xy 0 -0.4) (xy 0.6 -1) + ) (width 0)) + )) + (pad "" smd custom (at 8.89 6.35 ${p.rot + 180}) (size 0.25 1) (layers B.Cu) + (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + )) + (pad "" smd custom (at 8.89 5.842 ${ + p.rot + 180 + }) (size 0.1 0.1) (layers B.Cu B.Mask) + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 -0.4) (xy -0.6 -0.4) (xy -0.6 -0.2) (xy 0 0.4) (xy 0.6 -0.2) + ) (width 0)) + )) + (pad 10 smd custom (at 8.89 4.826 ${ + p.rot + 180 + }) (size 1.2 0.5) (layers B.Cu B.Mask) ${p.P14.str} + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 0) (xy -0.6 0) (xy -0.6 -1) (xy 0 -0.4) (xy 0.6 -1) + ) (width 0)) + )) + (pad "" smd custom (at 11.43 6.35 ${ + p.rot + 180 + }) (size 0.25 1) (layers B.Cu) + (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + )) + (pad "" smd custom (at 11.43 5.842 ${ + p.rot + 180 + }) (size 0.1 0.1) (layers B.Cu B.Mask) + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 -0.4) (xy -0.6 -0.4) (xy -0.6 -0.2) (xy 0 0.4) (xy 0.6 -0.2) + ) (width 0)) + )) + (pad 11 smd custom (at 11.43 4.826 ${ + p.rot + 180 + }) (size 1.2 0.5) (layers B.Cu B.Mask) ${p.P16.str} + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 0) (xy -0.6 0) (xy -0.6 -1) (xy 0 -0.4) (xy 0.6 -1) + ) (width 0)) + )) + (pad "" smd custom (at 13.97 6.35 ${ + p.rot + 180 + }) (size 0.25 1) (layers B.Cu) + (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + )) + (pad "" smd custom (at 13.97 5.842 ${ + p.rot + 180 + }) (size 0.1 0.1) (layers B.Cu B.Mask) + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 -0.4) (xy -0.6 -0.4) (xy -0.6 -0.2) (xy 0 0.4) (xy 0.6 -0.2) + ) (width 0)) + )) + (pad 12 smd custom (at 13.97 4.826 ${ + p.rot + 180 + }) (size 1.2 0.5) (layers B.Cu B.Mask) ${p.P10.str} + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 0) (xy -0.6 0) (xy -0.6 -1) (xy 0 -0.4) (xy 0.6 -1) + ) (width 0)) + )) + (pad "" smd custom (at -13.97 -6.35 ${p.rot}) (size 0.25 1) (layers B.Cu) + (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + )) + (pad "" smd custom (at -13.97 -5.842 ${ + p.rot + }) (size 0.1 0.1) (layers B.Cu B.Mask) + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 -0.4) (xy -0.6 -0.4) (xy -0.6 -0.2) (xy 0 0.4) (xy 0.6 -0.2) + ) (width 0)) + )) + (pad 24 smd custom (at -13.97 -4.826 ${ + p.rot + }) (size 1.2 0.5) (layers B.Cu B.Mask) ${p.P1.str} + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 0) (xy -0.6 0) (xy -0.6 -1) (xy 0 -0.4) (xy 0.6 -1) + ) (width 0)) + )) + (pad 23 smd custom (at -11.43 -4.826 ${ + p.rot + }) (size 1.2 0.5) (layers B.Cu B.Mask) ${p.P0.str} + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 0) (xy -0.6 0) (xy -0.6 -1) (xy 0 -0.4) (xy 0.6 -1) + ) (width 0)) + )) + (pad "" smd custom (at -11.43 -6.35 ${p.rot}) (size 0.25 1) (layers B.Cu) + (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + )) + (pad "" smd custom (at -11.43 -5.842 ${ + p.rot + }) (size 0.1 0.1) (layers B.Cu B.Mask) + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 -0.4) (xy -0.6 -0.4) (xy -0.6 -0.2) (xy 0 0.4) (xy 0.6 -0.2) + ) (width 0)) + )) + (pad 22 smd custom (at -8.89 -4.826 ${ + p.rot + }) (size 1.2 0.5) (layers B.Cu B.Mask) ${p.GND.str} + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 0) (xy -0.6 0) (xy -0.6 -1) (xy 0 -0.4) (xy 0.6 -1) + ) (width 0)) + )) + (pad "" smd custom (at -8.89 -6.35 ${p.rot}) (size 0.25 1) (layers B.Cu) + (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + )) + (pad "" smd custom (at -8.89 -5.842 ${ + p.rot + }) (size 0.1 0.1) (layers B.Cu B.Mask) + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 -0.4) (xy -0.6 -0.4) (xy -0.6 -0.2) (xy 0 0.4) (xy 0.6 -0.2) + ) (width 0)) + )) + (pad 21 smd custom (at -6.35 -4.826 ${ + p.rot + }) (size 1.2 0.5) (layers B.Cu B.Mask) ${p.GND.str} + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 0) (xy -0.6 0) (xy -0.6 -1) (xy 0 -0.4) (xy 0.6 -1) + ) (width 0)) + )) + (pad "" smd custom (at -6.35 -6.35 ${p.rot}) (size 0.25 1) (layers B.Cu) + (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + )) + (pad "" smd custom (at -6.35 -5.842 ${ + p.rot + }) (size 0.1 0.1) (layers B.Cu B.Mask) + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 -0.4) (xy -0.6 -0.4) (xy -0.6 -0.2) (xy 0 0.4) (xy 0.6 -0.2) + ) (width 0)) + )) + (pad 20 smd custom (at -3.81 -4.826 ${ + p.rot + }) (size 1.2 0.5) (layers B.Cu B.Mask) ${p.P2.str} + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 0) (xy -0.6 0) (xy -0.6 -1) (xy 0 -0.4) (xy 0.6 -1) + ) (width 0)) + )) + (pad "" smd custom (at -3.81 -6.35 ${p.rot}) (size 0.25 1) (layers B.Cu) + (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + )) + (pad "" smd custom (at -3.81 -5.842 ${ + p.rot + }) (size 0.1 0.1) (layers B.Cu B.Mask) + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 -0.4) (xy -0.6 -0.4) (xy -0.6 -0.2) (xy 0 0.4) (xy 0.6 -0.2) + ) (width 0)) + )) + (pad 19 smd custom (at -1.27 -4.826 ${ + p.rot + }) (size 1.2 0.5) (layers B.Cu B.Mask) ${p.P3.str} + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 0) (xy -0.6 0) (xy -0.6 -1) (xy 0 -0.4) (xy 0.6 -1) + ) (width 0)) + )) + (pad "" smd custom (at -1.27 -6.35 ${p.rot}) (size 0.25 1) (layers B.Cu) + (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + )) + (pad "" smd custom (at -1.27 -5.842 ${ + p.rot + }) (size 0.1 0.1) (layers B.Cu B.Mask) + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 -0.4) (xy -0.6 -0.4) (xy -0.6 -0.2) (xy 0 0.4) (xy 0.6 -0.2) + ) (width 0)) + )) + (pad 18 smd custom (at 1.27 -4.826 ${ + p.rot + }) (size 1.2 0.5) (layers B.Cu B.Mask) ${p.P4.str} + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 0) (xy -0.6 0) (xy -0.6 -1) (xy 0 -0.4) (xy 0.6 -1) + ) (width 0)) + )) + (pad "" smd custom (at 1.27 -6.35 ${p.rot}) (size 0.25 1) (layers B.Cu) + (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + )) + (pad "" smd custom (at 1.27 -5.842 ${ + p.rot + }) (size 0.1 0.1) (layers B.Cu B.Mask) + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 -0.4) (xy -0.6 -0.4) (xy -0.6 -0.2) (xy 0 0.4) (xy 0.6 -0.2) + ) (width 0)) + )) + (pad 17 smd custom (at 3.81 -4.826 ${ + p.rot + }) (size 1.2 0.5) (layers B.Cu B.Mask) ${p.P5.str} + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 0) (xy -0.6 0) (xy -0.6 -1) (xy 0 -0.4) (xy 0.6 -1) + ) (width 0)) + )) + (pad "" smd custom (at 3.81 -6.35 ${p.rot}) (size 0.25 1) (layers B.Cu) + (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + )) + (pad "" smd custom (at 3.81 -5.842 ${ + p.rot + }) (size 0.1 0.1) (layers B.Cu B.Mask) + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 -0.4) (xy -0.6 -0.4) (xy -0.6 -0.2) (xy 0 0.4) (xy 0.6 -0.2) + ) (width 0)) + )) + (pad 16 smd custom (at 6.35 -4.826 ${ + p.rot + }) (size 1.2 0.5) (layers B.Cu B.Mask) ${p.P6.str} + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 0) (xy -0.6 0) (xy -0.6 -1) (xy 0 -0.4) (xy 0.6 -1) + ) (width 0)) + )) + (pad "" smd custom (at 6.35 -6.35 ${p.rot}) (size 0.25 1) (layers B.Cu) + (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + )) + (pad "" smd custom (at 6.35 -5.842 ${ + p.rot + }) (size 0.1 0.1) (layers B.Cu B.Mask) + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 -0.4) (xy -0.6 -0.4) (xy -0.6 -0.2) (xy 0 0.4) (xy 0.6 -0.2) + ) (width 0)) + )) + (pad 15 smd custom (at 8.89 -4.826 ${ + p.rot + }) (size 1.2 0.5) (layers B.Cu B.Mask) ${p.P7.str} + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 0) (xy -0.6 0) (xy -0.6 -1) (xy 0 -0.4) (xy 0.6 -1) + ) (width 0)) + )) + (pad "" smd custom (at 8.89 -6.35 ${p.rot}) (size 0.25 1) (layers B.Cu) + (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + )) + (pad "" smd custom (at 8.89 -5.842 ${ + p.rot + }) (size 0.1 0.1) (layers B.Cu B.Mask) + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 -0.4) (xy -0.6 -0.4) (xy -0.6 -0.2) (xy 0 0.4) (xy 0.6 -0.2) + ) (width 0)) + )) + (pad 14 smd custom (at 11.43 -4.826 ${ + p.rot + }) (size 1.2 0.5) (layers B.Cu B.Mask) ${p.P8.str} + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 0) (xy -0.6 0) (xy -0.6 -1) (xy 0 -0.4) (xy 0.6 -1) + ) (width 0)) + )) + (pad "" smd custom (at 11.43 -6.35 ${p.rot}) (size 0.25 1) (layers B.Cu) + (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + )) + (pad "" smd custom (at 11.43 -5.842 ${ + p.rot + }) (size 0.1 0.1) (layers B.Cu B.Mask) + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 -0.4) (xy -0.6 -0.4) (xy -0.6 -0.2) (xy 0 0.4) (xy 0.6 -0.2) + ) (width 0)) + )) + (pad 13 smd custom (at 13.97 -4.826 ${ + p.rot + }) (size 1.2 0.5) (layers B.Cu B.Mask) ${p.P9.str} + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 0) (xy -0.6 0) (xy -0.6 -1) (xy 0 -0.4) (xy 0.6 -1) + ) (width 0)) + )) + (pad "" smd custom (at 13.97 -6.35 ${p.rot}) (size 0.25 1) (layers B.Cu) + (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + )) + (pad "" smd custom (at 13.97 -5.842 ${ + p.rot + }) (size 0.1 0.1) (layers B.Cu B.Mask) + (clearance 0.1) (zone_connect 0) + (options (clearance outline) (anchor rect)) + (primitives + (gr_poly (pts + (xy 0.6 -0.4) (xy -0.6 -0.4) (xy -0.6 -0.2) (xy 0 0.4) (xy 0.6 -0.2) + ) (width 0)) + )) + (pad 23 smd custom (at -11.43 0.762 ${ + p.rot + 180 + }) (size 0.25 0.25) (layers F.Cu) ${p.P0.str} + (zone_connect 0) + (options (clearance outline) (anchor circle)) + (primitives + (gr_line (start 0 0) (end 0.762 -0.762) (width 0.25)) + (gr_line (start 0.762 -0.762) (end 0.762 -3.302) (width 0.25)) + (gr_line (start 0.762 -3.302) (end 0 -4.064) (width 0.25)) + )) + (pad 23 smd custom (at -11.43 0.762 ${ + p.rot + 180 + }) (size 0.25 0.25) (layers B.Cu) ${p.P0.str} + (zone_connect 0) + (options (clearance outline) (anchor circle)) + (primitives + (gr_line (start 0 0) (end -0.766 0.766) (width 0.25)) + (gr_line (start -0.766 0.766) (end -0.766 4.822) (width 0.25)) + (gr_line (start -0.766 4.822) (end 0 5.588) (width 0.25)) + )) + (pad 2 smd custom (at -11.43 -0.762 ${ + p.rot + }) (size 0.25 0.25) (layers B.Cu) ${p.GND.str} + (zone_connect 0) + (options (clearance outline) (anchor circle)) + (primitives + (gr_line (start 0 0) (end -0.766 0.766) (width 0.25)) + (gr_line (start -0.766 0.766) (end -0.766 4.822) (width 0.25)) + (gr_line (start -0.766 4.822) (end 0 5.588) (width 0.25)) + )) + (pad 2 thru_hole circle (at -11.43 -0.762 ${ + p.rot + 180 + }) (size 0.8 0.8) (drill 0.4) (layers *.Cu) ${p.GND.str}) + (pad 23 thru_hole circle (at -11.43 0.762 ${ + p.rot + 180 + }) (size 0.8 0.8) (drill 0.4) (layers *.Cu) ${p.P0.str}) + (pad 24 thru_hole circle (at -13.97 0.762 ${ + p.rot + 180 + }) (size 0.8 0.8) (drill 0.4) (layers *.Cu) ${p.P1.str}) + (pad 1 thru_hole circle (at -13.97 -0.762 ${ + p.rot + 180 + }) (size 0.8 0.8) (drill 0.4) (layers *.Cu) ${p.RAW.str}) + (pad 24 smd custom (at -13.97 0.762 ${ + p.rot + 180 + }) (size 0.25 0.25) (layers B.Cu) ${p.P1.str} + (zone_connect 0) + (options (clearance outline) (anchor circle)) + (primitives + (gr_line (start 0 0) (end -0.766 0.766) (width 0.25)) + (gr_line (start -0.766 0.766) (end -0.766 4.822) (width 0.25)) + (gr_line (start -0.766 4.822) (end 0 5.588) (width 0.25)) + )) + (pad 1 smd custom (at -13.97 -0.762 ${ + p.rot + }) (size 0.25 0.25) (layers B.Cu) ${p.RAW.str} + (zone_connect 0) + (options (clearance outline) (anchor circle)) + (primitives + (gr_line (start 0 0) (end -0.766 0.766) (width 0.25)) + (gr_line (start -0.766 0.766) (end -0.766 4.822) (width 0.25)) + (gr_line (start -0.766 4.822) (end 0 5.588) (width 0.25)) + )) + (pad 1 smd custom (at -13.97 -0.762 ${ + p.rot + }) (size 0.25 0.25) (layers F.Cu) ${p.RAW.str} + (zone_connect 0) + (options (clearance outline) (anchor circle)) + (primitives + (gr_line (start 0 0) (end 0.766 -0.766) (width 0.25)) + (gr_line (start 0.766 -0.766) (end 0.766 -3.298) (width 0.25)) + (gr_line (start 0.766 -3.298) (end 0 -4.064) (width 0.25)) + )) + (pad 24 smd custom (at -13.97 0.762 ${ + p.rot + 180 + }) (size 0.25 0.25) (layers F.Cu) ${p.P1.str} + (zone_connect 0) + (options (clearance outline) (anchor circle)) + (primitives + (gr_line (start 0 0) (end 0.762 -0.762) (width 0.25)) + (gr_line (start 0.762 -0.762) (end 0.762 -3.302) (width 0.25)) + (gr_line (start 0.762 -3.302) (end 0 -4.064) (width 0.25)) + )) + (pad 22 thru_hole circle (at -8.89 0.762 ${ + p.rot + 180 + }) (size 0.8 0.8) (drill 0.4) (layers *.Cu) ${p.GND.str}) + (pad 3 thru_hole circle (at -8.89 -0.762 ${ + p.rot + 180 + }) (size 0.8 0.8) (drill 0.4) (layers *.Cu) ${p.RST.str}) + (pad 22 smd custom (at -8.89 0.762 ${ + p.rot + 180 + }) (size 0.25 0.25) (layers B.Cu) ${p.GND.str} + (zone_connect 0) + (options (clearance outline) (anchor circle)) + (primitives + (gr_line (start 0 0) (end -0.766 0.766) (width 0.25)) + (gr_line (start -0.766 0.766) (end -0.766 4.822) (width 0.25)) + (gr_line (start -0.766 4.822) (end 0 5.588) (width 0.25)) + )) + (pad 3 smd custom (at -8.89 -0.762 ${ + p.rot + }) (size 0.25 0.25) (layers B.Cu) ${p.RST.str} + (zone_connect 0) + (options (clearance outline) (anchor circle)) + (primitives + (gr_line (start 0 0) (end -0.766 0.766) (width 0.25)) + (gr_line (start -0.766 0.766) (end -0.766 4.822) (width 0.25)) + (gr_line (start -0.766 4.822) (end 0 5.588) (width 0.25)) + )) + (pad 3 smd custom (at -8.89 -0.762 ${ + p.rot + }) (size 0.25 0.25) (layers F.Cu) ${p.RST.str} + (zone_connect 0) + (options (clearance outline) (anchor circle)) + (primitives + (gr_line (start 0 0) (end 0.766 -0.766) (width 0.25)) + (gr_line (start 0.766 -0.766) (end 0.766 -3.298) (width 0.25)) + (gr_line (start 0.766 -3.298) (end 0 -4.064) (width 0.25)) + )) + (pad 22 smd custom (at -8.89 0.762 ${ + p.rot + 180 + }) (size 0.25 0.25) (layers F.Cu) ${p.GND.str} + (zone_connect 0) + (options (clearance outline) (anchor circle)) + (primitives + (gr_line (start 0 0) (end 0.762 -0.762) (width 0.25)) + (gr_line (start 0.762 -0.762) (end 0.762 -3.302) (width 0.25)) + (gr_line (start 0.762 -3.302) (end 0 -4.064) (width 0.25)) + )) + (pad 21 thru_hole circle (at -6.35 0.762 ${ + p.rot + 180 + }) (size 0.8 0.8) (drill 0.4) (layers *.Cu) ${p.GND.str}) + (pad 4 thru_hole circle (at -6.35 -0.762 ${ + p.rot + 180 + }) (size 0.8 0.8) (drill 0.4) (layers *.Cu) ${p.VCC.str}) + (pad 21 smd custom (at -6.35 0.762 ${ + p.rot + 180 + }) (size 0.25 0.25) (layers B.Cu) ${p.GND.str} + (zone_connect 0) + (options (clearance outline) (anchor circle)) + (primitives + (gr_line (start 0 0) (end -0.766 0.766) (width 0.25)) + (gr_line (start -0.766 0.766) (end -0.766 4.822) (width 0.25)) + (gr_line (start -0.766 4.822) (end 0 5.588) (width 0.25)) + )) + (pad 4 smd custom (at -6.35 -0.762 ${ + p.rot + }) (size 0.25 0.25) (layers B.Cu) ${p.VCC.str} + (zone_connect 0) + (options (clearance outline) (anchor circle)) + (primitives + (gr_line (start 0 0) (end -0.766 0.766) (width 0.25)) + (gr_line (start -0.766 0.766) (end -0.766 4.822) (width 0.25)) + (gr_line (start -0.766 4.822) (end 0 5.588) (width 0.25)) + )) + (pad 4 smd custom (at -6.35 -0.762 ${ + p.rot + }) (size 0.25 0.25) (layers F.Cu) ${p.VCC.str} + (zone_connect 0) + (options (clearance outline) (anchor circle)) + (primitives + (gr_line (start 0 0) (end 0.766 -0.766) (width 0.25)) + (gr_line (start 0.766 -0.766) (end 0.766 -3.298) (width 0.25)) + (gr_line (start 0.766 -3.298) (end 0 -4.064) (width 0.25)) + )) + (pad 21 smd custom (at -6.35 0.762 ${ + p.rot + 180 + }) (size 0.25 0.25) (layers F.Cu) ${p.GND.str} + (zone_connect 0) + (options (clearance outline) (anchor circle)) + (primitives + (gr_line (start 0 0) (end 0.762 -0.762) (width 0.25)) + (gr_line (start 0.762 -0.762) (end 0.762 -3.302) (width 0.25)) + (gr_line (start 0.762 -3.302) (end 0 -4.064) (width 0.25)) + )) + (pad 20 thru_hole circle (at -3.81 0.762 ${ + p.rot + 180 + }) (size 0.8 0.8) (drill 0.4) (layers *.Cu) ${p.P2.str}) + (pad 5 thru_hole circle (at -3.81 -0.762 ${ + p.rot + 180 + }) (size 0.8 0.8) (drill 0.4) (layers *.Cu) ${p.P21.str}) + (pad 20 smd custom (at -3.81 0.762 ${ + p.rot + 180 + }) (size 0.25 0.25) (layers B.Cu) ${p.P2.str} + (zone_connect 0) + (options (clearance outline) (anchor circle)) + (primitives + (gr_line (start 0 0) (end -0.766 0.766) (width 0.25)) + (gr_line (start -0.766 0.766) (end -0.766 4.822) (width 0.25)) + (gr_line (start -0.766 4.822) (end 0 5.588) (width 0.25)) + )) + (pad 5 smd custom (at -3.81 -0.762 ${ + p.rot + }) (size 0.25 0.25) (layers B.Cu) ${p.P21.str} + (zone_connect 0) + (options (clearance outline) (anchor circle)) + (primitives + (gr_line (start 0 0) (end -0.766 0.766) (width 0.25)) + (gr_line (start -0.766 0.766) (end -0.766 4.822) (width 0.25)) + (gr_line (start -0.766 4.822) (end 0 5.588) (width 0.25)) + )) + (pad 5 smd custom (at -3.81 -0.762 ${ + p.rot + }) (size 0.25 0.25) (layers F.Cu) ${p.P21.str} + (zone_connect 0) + (options (clearance outline) (anchor circle)) + (primitives + (gr_line (start 0 0) (end 0.766 -0.766) (width 0.25)) + (gr_line (start 0.766 -0.766) (end 0.766 -3.298) (width 0.25)) + (gr_line (start 0.766 -3.298) (end 0 -4.064) (width 0.25)) + )) + (pad 20 smd custom (at -3.81 0.762 ${ + p.rot + 180 + }) (size 0.25 0.25) (layers F.Cu) ${p.P2.str} + (zone_connect 0) + (options (clearance outline) (anchor circle)) + (primitives + (gr_line (start 0 0) (end 0.762 -0.762) (width 0.25)) + (gr_line (start 0.762 -0.762) (end 0.762 -3.302) (width 0.25)) + (gr_line (start 0.762 -3.302) (end 0 -4.064) (width 0.25)) + )) + (pad 19 thru_hole circle (at -1.27 0.762 ${ + p.rot + 180 + }) (size 0.8 0.8) (drill 0.4) (layers *.Cu) ${p.P3.str}) + (pad 6 thru_hole circle (at -1.27 -0.762 ${ + p.rot + 180 + }) (size 0.8 0.8) (drill 0.4) (layers *.Cu) ${p.P20.str}) + (pad 19 smd custom (at -1.27 0.762 ${ + p.rot + 180 + }) (size 0.25 0.25) (layers B.Cu) ${p.P3.str} + (zone_connect 0) + (options (clearance outline) (anchor circle)) + (primitives + (gr_line (start 0 0) (end -0.766 0.766) (width 0.25)) + (gr_line (start -0.766 0.766) (end -0.766 4.822) (width 0.25)) + (gr_line (start -0.766 4.822) (end 0 5.588) (width 0.25)) + )) + (pad 6 smd custom (at -1.27 -0.762 ${ + p.rot + }) (size 0.25 0.25) (layers B.Cu) ${p.P20.str} + (zone_connect 0) + (options (clearance outline) (anchor circle)) + (primitives + (gr_line (start 0 0) (end -0.766 0.766) (width 0.25)) + (gr_line (start -0.766 0.766) (end -0.766 4.822) (width 0.25)) + (gr_line (start -0.766 4.822) (end 0 5.588) (width 0.25)) + )) + (pad 6 smd custom (at -1.27 -0.762 ${ + p.rot + }) (size 0.25 0.25) (layers F.Cu) ${p.P20.str} + (zone_connect 0) + (options (clearance outline) (anchor circle)) + (primitives + (gr_line (start 0 0) (end 0.766 -0.766) (width 0.25)) + (gr_line (start 0.766 -0.766) (end 0.766 -3.298) (width 0.25)) + (gr_line (start 0.766 -3.298) (end 0 -4.064) (width 0.25)) + )) + (pad 19 smd custom (at -1.27 0.762 ${ + p.rot + 180 + }) (size 0.25 0.25) (layers F.Cu) ${p.P3.str} + (zone_connect 0) + (options (clearance outline) (anchor circle)) + (primitives + (gr_line (start 0 0) (end 0.762 -0.762) (width 0.25)) + (gr_line (start 0.762 -0.762) (end 0.762 -3.302) (width 0.25)) + (gr_line (start 0.762 -3.302) (end 0 -4.064) (width 0.25)) + )) + (pad 18 thru_hole circle (at 1.27 0.762 ${ + p.rot + 180 + }) (size 0.8 0.8) (drill 0.4) (layers *.Cu) ${p.P4.str}) + (pad 7 thru_hole circle (at 1.27 -0.762 ${ + p.rot + 180 + }) (size 0.8 0.8) (drill 0.4) (layers *.Cu) ${p.P19.str}) + (pad 18 smd custom (at 1.27 0.762 ${ + p.rot + 180 + }) (size 0.25 0.25) (layers B.Cu) ${p.P4.str} + (zone_connect 0) + (options (clearance outline) (anchor circle)) + (primitives + (gr_line (start 0 0) (end -0.766 0.766) (width 0.25)) + (gr_line (start -0.766 0.766) (end -0.766 4.822) (width 0.25)) + (gr_line (start -0.766 4.822) (end 0 5.588) (width 0.25)) + )) + (pad 7 smd custom (at 1.27 -0.762 ${ + p.rot + }) (size 0.25 0.25) (layers B.Cu) ${p.P19.str} + (zone_connect 0) + (options (clearance outline) (anchor circle)) + (primitives + (gr_line (start 0 0) (end -0.766 0.766) (width 0.25)) + (gr_line (start -0.766 0.766) (end -0.766 4.822) (width 0.25)) + (gr_line (start -0.766 4.822) (end 0 5.588) (width 0.25)) + )) + (pad 7 smd custom (at 1.27 -0.762 ${ + p.rot + }) (size 0.25 0.25) (layers F.Cu) ${p.P19.str} + (zone_connect 0) + (options (clearance outline) (anchor circle)) + (primitives + (gr_line (start 0 0) (end 0.766 -0.766) (width 0.25)) + (gr_line (start 0.766 -0.766) (end 0.766 -3.298) (width 0.25)) + (gr_line (start 0.766 -3.298) (end 0 -4.064) (width 0.25)) + )) + (pad 18 smd custom (at 1.27 0.762 ${ + p.rot + 180 + }) (size 0.25 0.25) (layers F.Cu) ${p.P4.str} + (zone_connect 0) + (options (clearance outline) (anchor circle)) + (primitives + (gr_line (start 0 0) (end 0.762 -0.762) (width 0.25)) + (gr_line (start 0.762 -0.762) (end 0.762 -3.302) (width 0.25)) + (gr_line (start 0.762 -3.302) (end 0 -4.064) (width 0.25)) + )) + (pad 17 thru_hole circle (at 3.81 0.762 ${ + p.rot + 180 + }) (size 0.8 0.8) (drill 0.4) (layers *.Cu) ${p.P5.str}) + (pad 8 thru_hole circle (at 3.81 -0.762 ${ + p.rot + 180 + }) (size 0.8 0.8) (drill 0.4) (layers *.Cu) ${p.P18.str}) + (pad 17 smd custom (at 3.81 0.762 ${ + p.rot + 180 + }) (size 0.25 0.25) (layers B.Cu) ${p.P5.str} + (zone_connect 0) + (options (clearance outline) (anchor circle)) + (primitives + (gr_line (start 0 0) (end -0.766 0.766) (width 0.25)) + (gr_line (start -0.766 0.766) (end -0.766 4.822) (width 0.25)) + (gr_line (start -0.766 4.822) (end 0 5.588) (width 0.25)) + )) + (pad 8 smd custom (at 3.81 -0.762 ${ + p.rot + }) (size 0.25 0.25) (layers B.Cu) ${p.P18.str} + (zone_connect 0) + (options (clearance outline) (anchor circle)) + (primitives + (gr_line (start 0 0) (end -0.766 0.766) (width 0.25)) + (gr_line (start -0.766 0.766) (end -0.766 4.822) (width 0.25)) + (gr_line (start -0.766 4.822) (end 0 5.588) (width 0.25)) + )) + (pad 8 smd custom (at 3.81 -0.762 ${ + p.rot + }) (size 0.25 0.25) (layers F.Cu) ${p.P18.str} + (zone_connect 0) + (options (clearance outline) (anchor circle)) + (primitives + (gr_line (start 0 0) (end 0.766 -0.766) (width 0.25)) + (gr_line (start 0.766 -0.766) (end 0.766 -3.298) (width 0.25)) + (gr_line (start 0.766 -3.298) (end 0 -4.064) (width 0.25)) + )) + (pad 17 smd custom (at 3.81 0.762 ${ + p.rot + 180 + }) (size 0.25 0.25) (layers F.Cu) ${p.P5.str} + (zone_connect 0) + (options (clearance outline) (anchor circle)) + (primitives + (gr_line (start 0 0) (end 0.762 -0.762) (width 0.25)) + (gr_line (start 0.762 -0.762) (end 0.762 -3.302) (width 0.25)) + (gr_line (start 0.762 -3.302) (end 0 -4.064) (width 0.25)) + )) + (pad 16 thru_hole circle (at 6.35 0.762 ${ + p.rot + 180 + }) (size 0.8 0.8) (drill 0.4) (layers *.Cu) ${p.P6.str}) + (pad 9 thru_hole circle (at 6.35 -0.762 ${ + p.rot + 180 + }) (size 0.8 0.8) (drill 0.4) (layers *.Cu) ${p.P15.str}) + (pad 16 smd custom (at 6.35 0.762 ${ + p.rot + 180 + }) (size 0.25 0.25) (layers B.Cu) ${p.P6.str} + (zone_connect 0) + (options (clearance outline) (anchor circle)) + (primitives + (gr_line (start 0 0) (end -0.766 0.766) (width 0.25)) + (gr_line (start -0.766 0.766) (end -0.766 4.822) (width 0.25)) + (gr_line (start -0.766 4.822) (end 0 5.588) (width 0.25)) + )) + (pad 9 smd custom (at 6.35 -0.762 ${ + p.rot + }) (size 0.25 0.25) (layers B.Cu) ${p.P15.str} + (zone_connect 0) + (options (clearance outline) (anchor circle)) + (primitives + (gr_line (start 0 0) (end -0.766 0.766) (width 0.25)) + (gr_line (start -0.766 0.766) (end -0.766 4.822) (width 0.25)) + (gr_line (start -0.766 4.822) (end 0 5.588) (width 0.25)) + )) + (pad 9 smd custom (at 6.35 -0.762 ${ + p.rot + }) (size 0.25 0.25) (layers F.Cu) ${p.P15.str} + (zone_connect 0) + (options (clearance outline) (anchor circle)) + (primitives + (gr_line (start 0 0) (end 0.766 -0.766) (width 0.25)) + (gr_line (start 0.766 -0.766) (end 0.766 -3.298) (width 0.25)) + (gr_line (start 0.766 -3.298) (end 0 -4.064) (width 0.25)) + )) + (pad 16 smd custom (at 6.35 0.762 ${ + p.rot + 180 + }) (size 0.25 0.25) (layers F.Cu) ${p.P6.str} + (zone_connect 0) + (options (clearance outline) (anchor circle)) + (primitives + (gr_line (start 0 0) (end 0.762 -0.762) (width 0.25)) + (gr_line (start 0.762 -0.762) (end 0.762 -3.302) (width 0.25)) + (gr_line (start 0.762 -3.302) (end 0 -4.064) (width 0.25)) + )) + (pad 15 thru_hole circle (at 8.89 0.762 ${ + p.rot + 180 + }) (size 0.8 0.8) (drill 0.4) (layers *.Cu) ${p.P7.str}) + (pad 10 thru_hole circle (at 8.89 -0.762 ${ + p.rot + 180 + }) (size 0.8 0.8) (drill 0.4) (layers *.Cu) ${p.P14.str}) + (pad 15 smd custom (at 8.89 0.762 ${ + p.rot + 180 + }) (size 0.25 0.25) (layers B.Cu) ${p.P7.str} + (zone_connect 0) + (options (clearance outline) (anchor circle)) + (primitives + (gr_line (start 0 0) (end -0.766 0.766) (width 0.25)) + (gr_line (start -0.766 0.766) (end -0.766 4.822) (width 0.25)) + (gr_line (start -0.766 4.822) (end 0 5.588) (width 0.25)) + )) + (pad 10 smd custom (at 8.89 -0.762 ${ + p.rot + }) (size 0.25 0.25) (layers B.Cu) ${p.P14.str} + (zone_connect 0) + (options (clearance outline) (anchor circle)) + (primitives + (gr_line (start 0 0) (end -0.766 0.766) (width 0.25)) + (gr_line (start -0.766 0.766) (end -0.766 4.822) (width 0.25)) + (gr_line (start -0.766 4.822) (end 0 5.588) (width 0.25)) + )) + (pad 10 smd custom (at 8.89 -0.762 ${ + p.rot + }) (size 0.25 0.25) (layers F.Cu) ${p.P14.str} + (zone_connect 0) + (options (clearance outline) (anchor circle)) + (primitives + (gr_line (start 0 0) (end 0.766 -0.766) (width 0.25)) + (gr_line (start 0.766 -0.766) (end 0.766 -3.298) (width 0.25)) + (gr_line (start 0.766 -3.298) (end 0 -4.064) (width 0.25)) + )) + (pad 15 smd custom (at 8.89 0.762 ${ + p.rot + 180 + }) (size 0.25 0.25) (layers F.Cu) ${p.P7.str} + (zone_connect 0) + (options (clearance outline) (anchor circle)) + (primitives + (gr_line (start 0 0) (end 0.762 -0.762) (width 0.25)) + (gr_line (start 0.762 -0.762) (end 0.762 -3.302) (width 0.25)) + (gr_line (start 0.762 -3.302) (end 0 -4.064) (width 0.25)) + )) + (pad 14 thru_hole circle (at 11.43 0.762 ${ + p.rot + 180 + }) (size 0.8 0.8) (drill 0.4) (layers *.Cu) ${p.P8.str}) + (pad 11 thru_hole circle (at 11.43 -0.762 ${ + p.rot + 180 + }) (size 0.8 0.8) (drill 0.4) (layers *.Cu) ${p.P16.str}) + (pad 14 smd custom (at 11.43 0.762 ${ + p.rot + 180 + }) (size 0.25 0.25) (layers B.Cu) ${p.P8.str} + (zone_connect 0) + (options (clearance outline) (anchor circle)) + (primitives + (gr_line (start 0 0) (end -0.766 0.766) (width 0.25)) + (gr_line (start -0.766 0.766) (end -0.766 4.822) (width 0.25)) + (gr_line (start -0.766 4.822) (end 0 5.588) (width 0.25)) + )) + (pad 11 smd custom (at 11.43 -0.762 ${ + p.rot + }) (size 0.25 0.25) (layers B.Cu) ${p.P16.str} + (zone_connect 0) + (options (clearance outline) (anchor circle)) + (primitives + (gr_line (start 0 0) (end -0.766 0.766) (width 0.25)) + (gr_line (start -0.766 0.766) (end -0.766 4.822) (width 0.25)) + (gr_line (start -0.766 4.822) (end 0 5.588) (width 0.25)) + )) + (pad 11 smd custom (at 11.43 -0.762 ${ + p.rot + }) (size 0.25 0.25) (layers F.Cu) ${p.P16.str} + (zone_connect 0) + (options (clearance outline) (anchor circle)) + (primitives + (gr_line (start 0 0) (end 0.766 -0.766) (width 0.25)) + (gr_line (start 0.766 -0.766) (end 0.766 -3.298) (width 0.25)) + (gr_line (start 0.766 -3.298) (end 0 -4.064) (width 0.25)) + )) + (pad 14 smd custom (at 11.43 0.762 ${ + p.rot + 180 + }) (size 0.25 0.25) (layers F.Cu) ${p.P8.str} + (zone_connect 0) + (options (clearance outline) (anchor circle)) + (primitives + (gr_line (start 0 0) (end 0.762 -0.762) (width 0.25)) + (gr_line (start 0.762 -0.762) (end 0.762 -3.302) (width 0.25)) + (gr_line (start 0.762 -3.302) (end 0 -4.064) (width 0.25)) + )) + (pad 13 thru_hole circle (at 13.97 0.762 ${ + p.rot + 180 + }) (size 0.8 0.8) (drill 0.4) (layers *.Cu) ${p.P9.str}) + (pad 12 thru_hole circle (at 13.97 -0.762 ${ + p.rot + 180 + }) (size 0.8 0.8) (drill 0.4) (layers *.Cu) ${p.P10.str}) + (pad 13 smd custom (at 13.97 0.762 ${ + p.rot + 180 + }) (size 0.25 0.25) (layers B.Cu) ${p.P9.str} + (zone_connect 0) + (options (clearance outline) (anchor circle)) + (primitives + (gr_line (start 0 0) (end -0.766 0.766) (width 0.25)) + (gr_line (start -0.766 0.766) (end -0.766 4.822) (width 0.25)) + (gr_line (start -0.766 4.822) (end 0 5.588) (width 0.25)) + )) + (pad 12 smd custom (at 13.97 -0.762 ${ + p.rot + }) (size 0.25 0.25) (layers B.Cu) ${p.P10.str} + (zone_connect 0) + (options (clearance outline) (anchor circle)) + (primitives + (gr_line (start 0 0) (end -0.766 0.766) (width 0.25)) + (gr_line (start -0.766 0.766) (end -0.766 4.822) (width 0.25)) + (gr_line (start -0.766 4.822) (end 0 5.588) (width 0.25)) + )) + (pad 12 smd custom (at 13.97 -0.762 ${ + p.rot + }) (size 0.25 0.25) (layers F.Cu) ${p.P10.str} + (zone_connect 0) + (options (clearance outline) (anchor circle)) + (primitives + (gr_line (start 0 0) (end 0.766 -0.766) (width 0.25)) + (gr_line (start 0.766 -0.766) (end 0.766 -3.298) (width 0.25)) + (gr_line (start 0.766 -3.298) (end 0 -4.064) (width 0.25)) + )) + (pad 13 smd custom (at 13.97 0.762 ${ + p.rot + 180 + }) (size 0.25 0.25) (layers F.Cu) ${p.P9.str} + (zone_connect 0) + (options (clearance outline) (anchor circle)) + (primitives + (gr_line (start 0 0) (end 0.762 -0.762) (width 0.25)) + (gr_line (start 0.762 -0.762) (end 0.762 -3.302) (width 0.25)) + (gr_line (start 0.762 -3.302) (end 0 -4.064) (width 0.25)) + )) + ) + `; + }, +};