module.exports = { params: { designator: 'S', from: undefined, to: undefined }, body: p => ` (module ALPS (layer F.Cu) (tedit 5CF31DEF) ${p.at /* parametric position */} ${'' /* footprint reference */} (fp_text reference "${p.ref}" (at 0 0) (layer F.SilkS) ${p.ref_hide} (effects (font (size 1.27 1.27) (thickness 0.15)))) (fp_text value "" (at 0 0) (layer F.SilkS) hide (effects (font (size 1.27 1.27) (thickness 0.15)))) ${''/* corner marks */} (fp_line (start -7 -6) (end -7 -7) (layer Dwgs.User) (width 0.15)) (fp_line (start -7 7) (end -6 7) (layer Dwgs.User) (width 0.15)) (fp_line (start -6 -7) (end -7 -7) (layer Dwgs.User) (width 0.15)) (fp_line (start -7 7) (end -7 6) (layer Dwgs.User) (width 0.15)) (fp_line (start 7 6) (end 7 7) (layer Dwgs.User) (width 0.15)) (fp_line (start 7 -7) (end 6 -7) (layer Dwgs.User) (width 0.15)) (fp_line (start 6 7) (end 7 7) (layer Dwgs.User) (width 0.15)) (fp_line (start 7 -7) (end 7 -6) (layer Dwgs.User) (width 0.15)) ${''/* pins */} (pad 1 thru_hole circle (at 2.5 -4.5) (size 2.25 2.25) (drill 1.47) (layers *.Cu *.Mask) ${p.from}) (pad 2 thru_hole circle (at -2.5 -4) (size 2.25 2.25) (drill 1.47) (layers *.Cu *.Mask) ${p.to}) ) ` }