Browse Source

Rescale some of the components

tags/v0.5.0
Andrew Belt 7 years ago
parent
commit
49397935d7
6 changed files with 1364 additions and 336 deletions
  1. +27
    -84
      include/components.hpp
  2. +400
    -44
      res/ComponentLibrary/CL1362.svg
  3. +156
    -38
      res/ComponentLibrary/PJ301M.svg
  4. +342
    -44
      res/ComponentLibrary/PJ3410.svg
  5. +400
    -63
      res/ComponentLibrary/Rogan5PSGray.svg
  6. +39
    -63
      res/ComponentLibrary/Rogan6PSWhite.svg

+ 27
- 84
include/components.hpp View File

@@ -115,220 +115,163 @@ struct Rogan : SVGKnob {
} }
}; };


struct Rogan6PS : Rogan {
Rogan6PS() {
box.size = Vec(89, 89);
// minAngle = -0.83*M_PI;
// maxAngle = 0.83*M_PI;
}
};

struct Rogan5PS : Rogan {
Rogan5PS() {
box.size = Vec(60, 60);
}
};

struct Rogan3PS : Rogan {
Rogan3PS() {
box.size = Vec(52, 52);
}
};

struct Rogan3P : Rogan {
Rogan3P() {
box.size = Vec(42, 42);
}
};

struct Rogan2S : Rogan {
Rogan2S() {
box.size = Vec(43, 43);
}
};

struct Rogan2PS : Rogan {
Rogan2PS() {
box.size = Vec(43, 43);
}
};

struct Rogan2P : Rogan {
Rogan2P() {
box.size = Vec(34, 34);
}
};

struct Rogan1PS : Rogan {
Rogan1PS() {
box.size = Vec(40, 40);
}
};

struct Rogan1P : Rogan {
Rogan1P() {
box.size = Vec(31, 31);
}
};


struct Rogan6PSWhite : Rogan6PS {
struct Rogan6PSWhite : Rogan {
Rogan6PSWhite() { Rogan6PSWhite() {
setSVG(SVG::load(assetGlobal("res/ComponentLibrary/Rogan6PSWhite.svg"))); setSVG(SVG::load(assetGlobal("res/ComponentLibrary/Rogan6PSWhite.svg")));
} }
}; };


struct Rogan5PSGray : Rogan5PS {
struct Rogan5PSGray : Rogan {
Rogan5PSGray() { Rogan5PSGray() {
setSVG(SVG::load(assetGlobal("res/ComponentLibrary/Rogan5PSGray.svg"))); setSVG(SVG::load(assetGlobal("res/ComponentLibrary/Rogan5PSGray.svg")));
} }
}; };


struct Rogan3PSBlue : Rogan3PS {
struct Rogan3PSBlue : Rogan {
Rogan3PSBlue() { Rogan3PSBlue() {
setSVG(SVG::load(assetGlobal("res/ComponentLibrary/Rogan3PSBlue.svg"))); setSVG(SVG::load(assetGlobal("res/ComponentLibrary/Rogan3PSBlue.svg")));
} }
}; };


struct Rogan3PSRed : Rogan3PS {
struct Rogan3PSRed : Rogan {
Rogan3PSRed() { Rogan3PSRed() {
setSVG(SVG::load(assetGlobal("res/ComponentLibrary/Rogan3PSRed.svg"))); setSVG(SVG::load(assetGlobal("res/ComponentLibrary/Rogan3PSRed.svg")));
} }
}; };


struct Rogan3PSGreen : Rogan3PS {
struct Rogan3PSGreen : Rogan {
Rogan3PSGreen() { Rogan3PSGreen() {
setSVG(SVG::load(assetGlobal("res/ComponentLibrary/Rogan3PSGreen.svg"))); setSVG(SVG::load(assetGlobal("res/ComponentLibrary/Rogan3PSGreen.svg")));
} }
}; };


struct Rogan3PSWhite : Rogan3PS {
struct Rogan3PSWhite : Rogan {
Rogan3PSWhite() { Rogan3PSWhite() {
setSVG(SVG::load(assetGlobal("res/ComponentLibrary/Rogan3PSWhite.svg"))); setSVG(SVG::load(assetGlobal("res/ComponentLibrary/Rogan3PSWhite.svg")));
} }
}; };


struct Rogan3PBlue : Rogan3P {
struct Rogan3PBlue : Rogan {
Rogan3PBlue() { Rogan3PBlue() {
setSVG(SVG::load(assetGlobal("res/ComponentLibrary/Rogan3PBlue.svg"))); setSVG(SVG::load(assetGlobal("res/ComponentLibrary/Rogan3PBlue.svg")));
} }
}; };


struct Rogan3PRed : Rogan3P {
struct Rogan3PRed : Rogan {
Rogan3PRed() { Rogan3PRed() {
setSVG(SVG::load(assetGlobal("res/ComponentLibrary/Rogan3PRed.svg"))); setSVG(SVG::load(assetGlobal("res/ComponentLibrary/Rogan3PRed.svg")));
} }
}; };


struct Rogan3PGreen : Rogan3P {
struct Rogan3PGreen : Rogan {
Rogan3PGreen() { Rogan3PGreen() {
setSVG(SVG::load(assetGlobal("res/ComponentLibrary/Rogan3PGreen.svg"))); setSVG(SVG::load(assetGlobal("res/ComponentLibrary/Rogan3PGreen.svg")));
} }
}; };


struct Rogan3PWhite : Rogan3P {
struct Rogan3PWhite : Rogan {
Rogan3PWhite() { Rogan3PWhite() {
setSVG(SVG::load(assetGlobal("res/ComponentLibrary/Rogan3PWhite.svg"))); setSVG(SVG::load(assetGlobal("res/ComponentLibrary/Rogan3PWhite.svg")));
} }
}; };


struct Rogan2SGray : Rogan2S {
struct Rogan2SGray : Rogan {
Rogan2SGray() { Rogan2SGray() {
setSVG(SVG::load(assetGlobal("res/ComponentLibrary/Rogan2SGray.svg"))); setSVG(SVG::load(assetGlobal("res/ComponentLibrary/Rogan2SGray.svg")));
} }
}; };


struct Rogan2PSBlue : Rogan2PS {
struct Rogan2PSBlue : Rogan {
Rogan2PSBlue() { Rogan2PSBlue() {
setSVG(SVG::load(assetGlobal("res/ComponentLibrary/Rogan2PSBlue.svg"))); setSVG(SVG::load(assetGlobal("res/ComponentLibrary/Rogan2PSBlue.svg")));
} }
}; };


struct Rogan2PSRed : Rogan2PS {
struct Rogan2PSRed : Rogan {
Rogan2PSRed() { Rogan2PSRed() {
setSVG(SVG::load(assetGlobal("res/ComponentLibrary/Rogan2PSRed.svg"))); setSVG(SVG::load(assetGlobal("res/ComponentLibrary/Rogan2PSRed.svg")));
} }
}; };


struct Rogan2PSGreen : Rogan2PS {
struct Rogan2PSGreen : Rogan {
Rogan2PSGreen() { Rogan2PSGreen() {
setSVG(SVG::load(assetGlobal("res/ComponentLibrary/Rogan2PSGreen.svg"))); setSVG(SVG::load(assetGlobal("res/ComponentLibrary/Rogan2PSGreen.svg")));
} }
}; };


struct Rogan2PSWhite : Rogan2PS {
struct Rogan2PSWhite : Rogan {
Rogan2PSWhite() { Rogan2PSWhite() {
setSVG(SVG::load(assetGlobal("res/ComponentLibrary/Rogan2PSWhite.svg"))); setSVG(SVG::load(assetGlobal("res/ComponentLibrary/Rogan2PSWhite.svg")));
} }
}; };


struct Rogan2PBlue : Rogan2P {
struct Rogan2PBlue : Rogan {
Rogan2PBlue() { Rogan2PBlue() {
setSVG(SVG::load(assetGlobal("res/ComponentLibrary/Rogan2PBlue.svg"))); setSVG(SVG::load(assetGlobal("res/ComponentLibrary/Rogan2PBlue.svg")));
} }
}; };


struct Rogan2PRed : Rogan2P {
struct Rogan2PRed : Rogan {
Rogan2PRed() { Rogan2PRed() {
setSVG(SVG::load(assetGlobal("res/ComponentLibrary/Rogan2PRed.svg"))); setSVG(SVG::load(assetGlobal("res/ComponentLibrary/Rogan2PRed.svg")));
} }
}; };


struct Rogan2PGreen : Rogan2P {
struct Rogan2PGreen : Rogan {
Rogan2PGreen() { Rogan2PGreen() {
setSVG(SVG::load(assetGlobal("res/ComponentLibrary/Rogan2PGreen.svg"))); setSVG(SVG::load(assetGlobal("res/ComponentLibrary/Rogan2PGreen.svg")));
} }
}; };


struct Rogan2PWhite : Rogan2P {
struct Rogan2PWhite : Rogan {
Rogan2PWhite() { Rogan2PWhite() {
setSVG(SVG::load(assetGlobal("res/ComponentLibrary/Rogan2PWhite.svg"))); setSVG(SVG::load(assetGlobal("res/ComponentLibrary/Rogan2PWhite.svg")));
} }
}; };


struct Rogan1PSBlue : Rogan1PS {
struct Rogan1PSBlue : Rogan {
Rogan1PSBlue() { Rogan1PSBlue() {
setSVG(SVG::load(assetGlobal("res/ComponentLibrary/Rogan1PSBlue.svg"))); setSVG(SVG::load(assetGlobal("res/ComponentLibrary/Rogan1PSBlue.svg")));
} }
}; };


struct Rogan1PSRed : Rogan1PS {
struct Rogan1PSRed : Rogan {
Rogan1PSRed() { Rogan1PSRed() {
setSVG(SVG::load(assetGlobal("res/ComponentLibrary/Rogan1PSRed.svg"))); setSVG(SVG::load(assetGlobal("res/ComponentLibrary/Rogan1PSRed.svg")));
} }
}; };


struct Rogan1PSGreen : Rogan1PS {
struct Rogan1PSGreen : Rogan {
Rogan1PSGreen() { Rogan1PSGreen() {
setSVG(SVG::load(assetGlobal("res/ComponentLibrary/Rogan1PSGreen.svg"))); setSVG(SVG::load(assetGlobal("res/ComponentLibrary/Rogan1PSGreen.svg")));
} }
}; };


struct Rogan1PSWhite : Rogan1PS {
struct Rogan1PSWhite : Rogan {
Rogan1PSWhite() { Rogan1PSWhite() {
setSVG(SVG::load(assetGlobal("res/ComponentLibrary/Rogan1PSWhite.svg"))); setSVG(SVG::load(assetGlobal("res/ComponentLibrary/Rogan1PSWhite.svg")));
} }
}; };


struct Rogan1PBlue : Rogan1P {
struct Rogan1PBlue : Rogan {
Rogan1PBlue() { Rogan1PBlue() {
setSVG(SVG::load(assetGlobal("res/ComponentLibrary/Rogan1PBlue.svg"))); setSVG(SVG::load(assetGlobal("res/ComponentLibrary/Rogan1PBlue.svg")));
} }
}; };


struct Rogan1PRed : Rogan1P {
struct Rogan1PRed : Rogan {
Rogan1PRed() { Rogan1PRed() {
setSVG(SVG::load(assetGlobal("res/ComponentLibrary/Rogan1PRed.svg"))); setSVG(SVG::load(assetGlobal("res/ComponentLibrary/Rogan1PRed.svg")));
} }
}; };


struct Rogan1PGreen : Rogan1P {
struct Rogan1PGreen : Rogan {
Rogan1PGreen() { Rogan1PGreen() {
setSVG(SVG::load(assetGlobal("res/ComponentLibrary/Rogan1PGreen.svg"))); setSVG(SVG::load(assetGlobal("res/ComponentLibrary/Rogan1PGreen.svg")));
} }
}; };


struct Rogan1PWhite : Rogan1P {
struct Rogan1PWhite : Rogan {
Rogan1PWhite() { Rogan1PWhite() {
setSVG(SVG::load(assetGlobal("res/ComponentLibrary/Rogan1PWhite.svg"))); setSVG(SVG::load(assetGlobal("res/ComponentLibrary/Rogan1PWhite.svg")));
} }


+ 400
- 44
res/ComponentLibrary/CL1362.svg View File

@@ -9,15 +9,376 @@
xmlns="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="32.259781"
height="29.022205"
viewBox="0 0 8.5354009 7.6787921"
width="11.28851mm"
height="10.148451mm"
viewBox="0 0 11.28851 10.148451"
version="1.1" version="1.1"
id="svg6615"
id="svg15246"
sodipodi:docname="CL1362.svg" sodipodi:docname="CL1362.svg"
inkscape:version="0.92.1 r">
inkscape:version="0.92.2 5c3e80d, 2017-08-06">
<defs <defs
id="defs6609" />
id="defs15240">
<clipPath
id="clip89">
<rect
y="0"
x="0"
width="18"
height="19"
id="rect4864" />
</clipPath>
<clipPath
id="clip90">
<path
inkscape:connector-curvature="0"
d="m 0.898438,0.128906 h 16.25 v 17.882813 h -16.25 z m 0,0"
id="path4861" />
</clipPath>
<mask
id="mask44">
<g
style="filter:url(#alpha)"
id="g4858"
transform="matrix(0.26458333,0,0,0.26458333,89.358789,128.57765)">
<rect
x="0"
y="0"
width="3052.8701"
height="3351.5"
style="fill:#000000;fill-opacity:0.14999402;stroke:none"
id="rect4856" />
</g>
</mask>
<filter
id="alpha"
filterUnits="objectBoundingBox"
x="0"
y="0"
width="1"
height="1">
<feColorMatrix
type="matrix"
in="SourceGraphic"
values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
id="feColorMatrix4149" />
</filter>
<clipPath
id="clipPath17821">
<rect
y="0"
x="0"
width="18"
height="19"
id="rect17819" />
</clipPath>
<clipPath
id="clipPath17825">
<path
inkscape:connector-curvature="0"
d="m 0.898438,0.128906 h 16.25 v 17.882813 h -16.25 z m 0,0"
id="path17823" />
</clipPath>
<clipPath
id="clip87">
<rect
y="0"
x="0"
width="24"
height="26"
id="rect4848" />
</clipPath>
<clipPath
id="clip88">
<path
inkscape:connector-curvature="0"
d="m 0.683594,0.921875 h 22.679687 v 24.9375 H 0.683594 Z m 0,0"
id="path4845" />
</clipPath>
<mask
id="mask43">
<g
style="filter:url(#alpha)"
id="g4842"
transform="matrix(0.26458333,0,0,0.26458333,89.358789,128.57765)">
<rect
x="0"
y="0"
width="3052.8701"
height="3351.5"
style="fill:#000000;fill-opacity:0.14999402;stroke:none"
id="rect4840" />
</g>
</mask>
<filter
id="filter17836"
filterUnits="objectBoundingBox"
x="0"
y="0"
width="1"
height="1">
<feColorMatrix
type="matrix"
in="SourceGraphic"
values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
id="feColorMatrix17834" />
</filter>
<clipPath
id="clipPath17840">
<rect
y="0"
x="0"
width="24"
height="26"
id="rect17838" />
</clipPath>
<clipPath
id="clipPath17844">
<path
inkscape:connector-curvature="0"
d="m 0.683594,0.921875 h 22.679687 v 24.9375 H 0.683594 Z m 0,0"
id="path17842" />
</clipPath>
<clipPath
id="clip95">
<rect
y="0"
x="0"
width="18"
height="18"
id="rect4912" />
</clipPath>
<clipPath
id="clip96">
<path
inkscape:connector-curvature="0"
d="M 0.140625,0.140625 H 17.199219 V 17.199219 H 0.140625 Z m 0,0"
id="path4909" />
</clipPath>
<mask
id="mask47">
<g
style="filter:url(#alpha-3)"
id="g4906"
transform="matrix(0.26458333,0,0,0.26458333,88.611154,119.19859)">
<rect
x="0"
y="0"
width="3052.8701"
height="3351.5"
style="fill:#000000;fill-opacity:0.33000201;stroke:none"
id="rect4904" />
</g>
</mask>
<filter
id="alpha-3"
filterUnits="objectBoundingBox"
x="0"
y="0"
width="1"
height="1">
<feColorMatrix
type="matrix"
in="SourceGraphic"
values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
id="feColorMatrix4149-6" />
</filter>
<clipPath
id="clipPath18541">
<rect
y="0"
x="0"
width="18"
height="18"
id="rect18539" />
</clipPath>
<clipPath
id="clipPath18545">
<path
inkscape:connector-curvature="0"
d="M 0.140625,0.140625 H 17.199219 V 17.199219 H 0.140625 Z m 0,0"
id="path18543" />
</clipPath>
<clipPath
id="clip93">
<rect
y="0"
x="0"
width="22"
height="24"
id="rect4896" />
</clipPath>
<clipPath
id="clip94">
<path
inkscape:connector-curvature="0"
d="M 0.0390625,0.0390625 H 21.300781 V 23.421875 H 0.0390625 Z m 0,0"
id="path4893" />
</clipPath>
<mask
id="mask46">
<g
style="filter:url(#alpha-3)"
id="g4890"
transform="matrix(0.26458333,0,0,0.26458333,88.611154,119.19859)">
<rect
x="0"
y="0"
width="3052.8701"
height="3351.5"
style="fill:#000000;fill-opacity:0.14999402;stroke:none"
id="rect4888" />
</g>
</mask>
<filter
id="filter18556"
filterUnits="objectBoundingBox"
x="0"
y="0"
width="1"
height="1">
<feColorMatrix
type="matrix"
in="SourceGraphic"
values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
id="feColorMatrix18554" />
</filter>
<clipPath
id="clipPath18560">
<rect
y="0"
x="0"
width="22"
height="24"
id="rect18558" />
</clipPath>
<clipPath
id="clipPath18564">
<path
inkscape:connector-curvature="0"
d="M 0.0390625,0.0390625 H 21.300781 V 23.421875 H 0.0390625 Z m 0,0"
id="path18562" />
</clipPath>
<clipPath
id="clip91">
<rect
y="0"
x="0"
width="29"
height="32"
id="rect4880" />
</clipPath>
<clipPath
id="clip92">
<path
inkscape:connector-curvature="0"
d="M 0.507812,0.5 H 28.855469 V 31.679688 H 0.507812 Z m 0,0"
id="path4877" />
</clipPath>
<mask
id="mask45">
<g
style="filter:url(#alpha-3)"
id="g4874"
transform="matrix(0.26458333,0,0,0.26458333,88.611154,119.19859)">
<rect
x="0"
y="0"
width="3052.8701"
height="3351.5"
style="fill:#000000;fill-opacity:0.14999402;stroke:none"
id="rect4872" />
</g>
</mask>
<filter
id="filter18575"
filterUnits="objectBoundingBox"
x="0"
y="0"
width="1"
height="1">
<feColorMatrix
type="matrix"
in="SourceGraphic"
values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
id="feColorMatrix18573" />
</filter>
<clipPath
id="clipPath18579">
<rect
y="0"
x="0"
width="29"
height="32"
id="rect18577" />
</clipPath>
<clipPath
id="clipPath18583">
<path
inkscape:connector-curvature="0"
d="M 0.507812,0.5 H 28.855469 V 31.679688 H 0.507812 Z m 0,0"
id="path18581" />
</clipPath>
<clipPath
id="clip202">
<rect
y="0"
x="0"
width="18"
height="18"
id="rect5795" />
</clipPath>
<clipPath
id="clip203">
<path
inkscape:connector-curvature="0"
d="M 0.855469,0.140625 H 17.914062 V 17.199219 H 0.855469 Z m 0,0"
id="path5792" />
</clipPath>
<mask
id="mask104">
<g
style="filter:url(#alpha-7)"
id="g5789"
transform="matrix(0.26458333,0,0,0.26458333,74.416306,97.613551)">
<rect
x="0"
y="0"
width="3052.8701"
height="3351.5"
style="fill:#000000;fill-opacity:0.33000201;stroke:none"
id="rect5787" />
</g>
</mask>
<filter
id="alpha-7"
filterUnits="objectBoundingBox"
x="0"
y="0"
width="1"
height="1">
<feColorMatrix
type="matrix"
in="SourceGraphic"
values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
id="feColorMatrix4149-5" />
</filter>
<clipPath
id="clipPath18765">
<rect
y="0"
x="0"
width="18"
height="18"
id="rect18763" />
</clipPath>
<clipPath
id="clipPath18769">
<path
inkscape:connector-curvature="0"
d="M 0.855469,0.140625 H 17.914062 V 17.199219 H 0.855469 Z m 0,0"
id="path18767" />
</clipPath>
</defs>
<sodipodi:namedview <sodipodi:namedview
id="base" id="base"
pagecolor="#ffffff" pagecolor="#ffffff"
@@ -25,24 +386,24 @@
borderopacity="1.0" borderopacity="1.0"
inkscape:pageopacity="0.0" inkscape:pageopacity="0.0"
inkscape:pageshadow="2" inkscape:pageshadow="2"
inkscape:zoom="11.313708"
inkscape:cx="18.320757"
inkscape:cy="12.47592"
inkscape:zoom="5.6"
inkscape:cx="0.6268417"
inkscape:cy="0.0028090321"
inkscape:document-units="mm" inkscape:document-units="mm"
inkscape:current-layer="g3165"
inkscape:current-layer="layer1"
showgrid="false" showgrid="false"
inkscape:window-width="1274"
inkscape:window-height="1434"
inkscape:window-x="1280"
inkscape:window-y="0"
inkscape:window-maximized="0"
units="px"
fit-margin-top="0" fit-margin-top="0"
fit-margin-left="0" fit-margin-left="0"
fit-margin-right="0" fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1600"
inkscape:window-height="882"
inkscape:window-x="0"
inkscape:window-y="18"
inkscape:window-maximized="0"
units="px" />
fit-margin-bottom="0" />
<metadata <metadata
id="metadata6612">
id="metadata15243">
<rdf:RDF> <rdf:RDF>
<cc:Work <cc:Work
rdf:about=""> rdf:about="">
@@ -57,31 +418,26 @@
inkscape:label="Layer 1" inkscape:label="Layer 1"
inkscape:groupmode="layer" inkscape:groupmode="layer"
id="layer1" id="layer1"
transform="translate(-107.70684,-97.132243)">
<g
transform="matrix(0.26424579,0,0,-0.26424579,-37.162088,591.23626)"
id="g3165"
style="stroke-width:0.75;stroke-miterlimit:4;stroke-dasharray:none">
<path
d="m 557.25,1841.3066 c -0.446,0 -0.968,0.305 -1.187,0.692 l -7.145,12.646 c -0.219,0.388 -0.219,0.994 0,1.382 l 7.145,12.644 c 0.219,0.389 0.741,0.694 1.187,0.694 h 14.272 c 0.446,0 0.968,-0.305 1.187,-0.694 l 7.145,-12.644 c 0.219,-0.388 0.219,-0.994 0,-1.382 l -7.145,-12.646 c -0.219,-0.387 -0.741,-0.692 -1.187,-0.692 z"
style="opacity:1;vector-effect:none;fill:#e7e7e7;fill-opacity:1;fill-rule:nonzero;stroke:#939593;stroke-width:1.00127733;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:8.5;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path6413"
inkscape:connector-curvature="0" />
<path
d="m 575.3652,1855.335 c 0,-6.064 -4.917,-10.981 -10.98,-10.981 -6.063,0 -10.981,4.917 -10.981,10.981 0,6.065 4.918,10.981 10.981,10.981 6.063,0 10.98,-4.916 10.98,-10.981"
style="fill:#555555;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00127733;stroke-miterlimit:4;stroke-dasharray:none"
id="path6421"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path6435"
style="opacity:1;vector-effect:none;fill:#555555;fill-opacity:1;stroke:#3b3b3b;stroke-width:1.00127733;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:8.5;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 556.106,1855.3428 c 0.023,-4.599 3.69,-8.268 8.289,-8.288 4.575,0.013 8.276,3.708 8.271,8.288 -0.003,4.572 -3.705,8.259 -8.271,8.271 -4.59,-0.02 -8.256,-3.68 -8.289,-8.271 z" />
<path
d="m 570.0552,1855.335 c 0,-3.131 -2.538,-5.669 -5.669,-5.669 -3.131,0 -5.669,2.538 -5.669,5.669 0,3.131 2.538,5.669 5.669,5.669 3.131,0 5.669,-2.538 5.669,-5.669"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.00127733;stroke-miterlimit:4;stroke-dasharray:none"
id="path6425"
inkscape:connector-curvature="0" />
</g>
transform="translate(-60.318055,-89.106416)">
<path
inkscape:connector-curvature="0"
id="path9179"
d="m 63.444634,99.129867 c -0.157096,0 -0.341754,-0.10887 -0.418924,-0.24529 l -2.520431,-4.4607 c -0.07717,-0.13641 -0.07717,-0.35002 0,-0.48782 l 2.520431,-4.46073 c 0.07717,-0.13642 0.261828,-0.243911 0.418924,-0.243911 h 5.035352 c 0.157096,0 0.341754,0.107491 0.418924,0.243911 l 2.520431,4.46073 c 0.07717,0.1378 0.07717,0.35141 0,0.48782 l -2.520431,4.4607 c -0.07717,0.13642 -0.261828,0.24529 -0.418924,0.24529 z m 0,0"
style="fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#636663;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path9183"
d="m 62.088644,94.179967 c 0,-2.13871 1.734951,-3.873672 3.873666,-3.873672 2.138715,0 3.873666,1.734962 3.873666,3.873672 0,2.14009 -1.734951,3.87364 -3.873666,3.87364 -2.138715,0 -3.873666,-1.73355 -3.873666,-3.87364"
style="fill:#545454;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775" />
<path
inkscape:connector-curvature="0"
id="path9185"
d="m 63.962776,94.179967 c 0,-1.1038 0.894348,-1.99954 1.999534,-1.99954 1.103806,0 1.999534,0.89574 1.999534,1.99954 0,1.10519 -0.895728,2.00089 -1.999534,2.00089 -1.105186,0 -1.999534,-0.8957 -1.999534,-2.00089"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775" />
<path
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#272827;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 62.994254,94.17964 c 0,-1.638452 1.327547,-2.968065 2.968056,-2.968065 1.638461,0 2.968056,1.329613 2.968056,2.968065 0,1.640516 -1.329595,2.970069 -2.968056,2.970069 -1.640509,0 -2.968056,-1.329553 -2.968056,-2.970069"
id="path18865"
inkscape:connector-curvature="0" />
</g> </g>
</svg> </svg>

+ 156
- 38
res/ComponentLibrary/PJ301M.svg View File

@@ -9,15 +9,136 @@
xmlns="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="6.5126157mm"
height="6.5128875mm"
viewBox="0 0 6.5126157 6.5128875"
width="8.3556204mm"
height="8.3556299mm"
viewBox="0 0 8.3556203 8.3556298"
version="1.1" version="1.1"
id="svg5158"
inkscape:version="0.92.1 r"
sodipodi:docname="PJ301M.svg">
id="svg15246"
sodipodi:docname="PJ301M.svg"
inkscape:version="0.92.2 5c3e80d, 2017-08-06">
<defs <defs
id="defs5152" />
id="defs15240">
<clipPath
id="clip89">
<rect
y="0"
x="0"
width="18"
height="19"
id="rect4864" />
</clipPath>
<clipPath
id="clip90">
<path
inkscape:connector-curvature="0"
d="m 0.898438,0.128906 h 16.25 v 17.882813 h -16.25 z m 0,0"
id="path4861" />
</clipPath>
<mask
id="mask44">
<g
style="filter:url(#alpha)"
id="g4858"
transform="matrix(0.26458333,0,0,0.26458333,89.358789,128.57765)">
<rect
x="0"
y="0"
width="3052.8701"
height="3351.5"
style="fill:#000000;fill-opacity:0.14999402;stroke:none"
id="rect4856" />
</g>
</mask>
<filter
id="alpha"
filterUnits="objectBoundingBox"
x="0"
y="0"
width="1"
height="1">
<feColorMatrix
type="matrix"
in="SourceGraphic"
values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
id="feColorMatrix4149" />
</filter>
<clipPath
id="clipPath17821">
<rect
y="0"
x="0"
width="18"
height="19"
id="rect17819" />
</clipPath>
<clipPath
id="clipPath17825">
<path
inkscape:connector-curvature="0"
d="m 0.898438,0.128906 h 16.25 v 17.882813 h -16.25 z m 0,0"
id="path17823" />
</clipPath>
<clipPath
id="clip87">
<rect
y="0"
x="0"
width="24"
height="26"
id="rect4848" />
</clipPath>
<clipPath
id="clip88">
<path
inkscape:connector-curvature="0"
d="m 0.683594,0.921875 h 22.679687 v 24.9375 H 0.683594 Z m 0,0"
id="path4845" />
</clipPath>
<mask
id="mask43">
<g
style="filter:url(#alpha)"
id="g4842"
transform="matrix(0.26458333,0,0,0.26458333,89.358789,128.57765)">
<rect
x="0"
y="0"
width="3052.8701"
height="3351.5"
style="fill:#000000;fill-opacity:0.14999402;stroke:none"
id="rect4840" />
</g>
</mask>
<filter
id="filter17836"
filterUnits="objectBoundingBox"
x="0"
y="0"
width="1"
height="1">
<feColorMatrix
type="matrix"
in="SourceGraphic"
values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
id="feColorMatrix17834" />
</filter>
<clipPath
id="clipPath17840">
<rect
y="0"
x="0"
width="24"
height="26"
id="rect17838" />
</clipPath>
<clipPath
id="clipPath17844">
<path
inkscape:connector-curvature="0"
d="m 0.683594,0.921875 h 22.679687 v 24.9375 H 0.683594 Z m 0,0"
id="path17842" />
</clipPath>
</defs>
<sodipodi:namedview <sodipodi:namedview
id="base" id="base"
pagecolor="#ffffff" pagecolor="#ffffff"
@@ -25,23 +146,24 @@
borderopacity="1.0" borderopacity="1.0"
inkscape:pageopacity="0.0" inkscape:pageopacity="0.0"
inkscape:pageshadow="2" inkscape:pageshadow="2"
inkscape:zoom="15.839192"
inkscape:cx="9.9739765"
inkscape:cy="9.6165796"
inkscape:zoom="11.2"
inkscape:cx="15.763023"
inkscape:cy="5.9688197"
inkscape:document-units="mm" inkscape:document-units="mm"
inkscape:current-layer="g3088"
inkscape:current-layer="layer1"
showgrid="false" showgrid="false"
inkscape:window-width="1274"
inkscape:window-height="1434"
inkscape:window-x="1280"
inkscape:window-y="0"
inkscape:window-maximized="0"
units="px"
fit-margin-top="0" fit-margin-top="0"
fit-margin-left="0" fit-margin-left="0"
fit-margin-right="0" fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1600"
inkscape:window-height="882"
inkscape:window-x="0"
inkscape:window-y="18"
inkscape:window-maximized="0" />
fit-margin-bottom="0" />
<metadata <metadata
id="metadata5155">
id="metadata15243">
<rdf:RDF> <rdf:RDF>
<cc:Work <cc:Work
rdf:about=""> rdf:about="">
@@ -56,25 +178,21 @@
inkscape:label="Layer 1" inkscape:label="Layer 1"
inkscape:groupmode="layer" inkscape:groupmode="layer"
id="layer1" id="layer1"
transform="translate(-118.26377,-79.997334)">
<g
transform="matrix(0.27191367,0,0,-0.27191367,41.843143,587.85632)"
id="g3088">
<path
d="m 293.0229,1844.2559 c -6.335,0 -11.489,5.154 -11.489,11.489 0,6.335 5.154,11.49 11.489,11.49 6.335,0 11.489,-5.155 11.489,-11.49 0,-6.335 -5.154,-11.489 -11.489,-11.489"
style="opacity:1;vector-effect:none;fill:#e7e7e7;fill-opacity:1;fill-rule:nonzero;stroke:#909290;stroke-width:0.97304165;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path4639"
inkscape:connector-curvature="0" />
<path
d="m 293.0229,1847.4709 c -4.562,0 -8.274,3.712 -8.274,8.274 0,4.563 3.712,8.275 8.274,8.275 4.562,0 8.274,-3.712 8.274,-8.275 0,-4.562 -3.712,-8.274 -8.274,-8.274"
style="fill:#e7e7e7;fill-opacity:1;fill-rule:nonzero;stroke:#909290;stroke-width:0.97304165;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path4647"
inkscape:connector-curvature="0" />
<path
d="m 298.1254,1855.7454 c 0,-2.817 -2.285,-5.103 -5.103,-5.103 -2.817,0 -5.102,2.286 -5.102,5.103 0,2.817 2.285,5.103 5.102,5.103 2.818,0 5.103,-2.286 5.103,-5.103"
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#909290;stroke-width:0.97304165;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path4655"
inkscape:connector-curvature="0" />
</g>
transform="translate(-88.611154,-119.19859)">
<path
inkscape:connector-curvature="0"
id="path7255"
d="m 92.788964,127.42922 c -2.235179,0 -4.05281,-1.81762 -4.05281,-4.05282 0,-2.23516 1.817631,-4.05281 4.05281,-4.05281 2.235176,0 4.05281,1.81765 4.05281,4.05281 0,2.2352 -1.817634,4.05282 -4.05281,4.05282"
style="fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#636663;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path7261"
d="m 92.788964,126.29511 c -1.609548,0 -2.918685,-1.30916 -2.918685,-2.91871 0,-1.60954 1.309137,-2.91867 2.918685,-2.91867 1.609549,0 2.918682,1.30913 2.918682,2.91867 0,1.60955 -1.309133,2.91871 -2.918682,2.91871"
style="fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#636663;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path7265"
d="m 94.588681,123.3764 c 0,0.99357 -0.806153,1.79974 -1.799717,1.79974 -0.993567,0 -1.79972,-0.80617 -1.79972,-1.79974 0,-0.99356 0.806153,-1.79969 1.79972,-1.79969 0.993564,0 1.799717,0.80613 1.799717,1.79969"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775" />
</g> </g>
</svg> </svg>

+ 342
- 44
res/ComponentLibrary/PJ3410.svg View File

@@ -9,15 +9,316 @@
xmlns="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="31.350592"
height="31.350582"
viewBox="0 0 8.294844 8.2948415"
width="10.355158mm"
height="10.35652mm"
viewBox="0 0 10.355158 10.35652"
version="1.1" version="1.1"
id="svg5158"
inkscape:version="0.92.1 r"
sodipodi:docname="PJ3410.svg">
id="svg15246"
sodipodi:docname="PJ3410.svg"
inkscape:version="0.92.2 5c3e80d, 2017-08-06">
<defs <defs
id="defs5152" />
id="defs15240">
<clipPath
id="clip89">
<rect
y="0"
x="0"
width="18"
height="19"
id="rect4864" />
</clipPath>
<clipPath
id="clip90">
<path
inkscape:connector-curvature="0"
d="m 0.898438,0.128906 h 16.25 v 17.882813 h -16.25 z m 0,0"
id="path4861" />
</clipPath>
<mask
id="mask44">
<g
style="filter:url(#alpha)"
id="g4858"
transform="matrix(0.26458333,0,0,0.26458333,89.358789,128.57765)">
<rect
x="0"
y="0"
width="3052.8701"
height="3351.5"
style="fill:#000000;fill-opacity:0.14999402;stroke:none"
id="rect4856" />
</g>
</mask>
<filter
id="alpha"
filterUnits="objectBoundingBox"
x="0"
y="0"
width="1"
height="1">
<feColorMatrix
type="matrix"
in="SourceGraphic"
values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
id="feColorMatrix4149" />
</filter>
<clipPath
id="clipPath17821">
<rect
y="0"
x="0"
width="18"
height="19"
id="rect17819" />
</clipPath>
<clipPath
id="clipPath17825">
<path
inkscape:connector-curvature="0"
d="m 0.898438,0.128906 h 16.25 v 17.882813 h -16.25 z m 0,0"
id="path17823" />
</clipPath>
<clipPath
id="clip87">
<rect
y="0"
x="0"
width="24"
height="26"
id="rect4848" />
</clipPath>
<clipPath
id="clip88">
<path
inkscape:connector-curvature="0"
d="m 0.683594,0.921875 h 22.679687 v 24.9375 H 0.683594 Z m 0,0"
id="path4845" />
</clipPath>
<mask
id="mask43">
<g
style="filter:url(#alpha)"
id="g4842"
transform="matrix(0.26458333,0,0,0.26458333,89.358789,128.57765)">
<rect
x="0"
y="0"
width="3052.8701"
height="3351.5"
style="fill:#000000;fill-opacity:0.14999402;stroke:none"
id="rect4840" />
</g>
</mask>
<filter
id="filter17836"
filterUnits="objectBoundingBox"
x="0"
y="0"
width="1"
height="1">
<feColorMatrix
type="matrix"
in="SourceGraphic"
values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
id="feColorMatrix17834" />
</filter>
<clipPath
id="clipPath17840">
<rect
y="0"
x="0"
width="24"
height="26"
id="rect17838" />
</clipPath>
<clipPath
id="clipPath17844">
<path
inkscape:connector-curvature="0"
d="m 0.683594,0.921875 h 22.679687 v 24.9375 H 0.683594 Z m 0,0"
id="path17842" />
</clipPath>
<clipPath
id="clip95">
<rect
y="0"
x="0"
width="18"
height="18"
id="rect4912" />
</clipPath>
<clipPath
id="clip96">
<path
inkscape:connector-curvature="0"
d="M 0.140625,0.140625 H 17.199219 V 17.199219 H 0.140625 Z m 0,0"
id="path4909" />
</clipPath>
<mask
id="mask47">
<g
style="filter:url(#alpha-3)"
id="g4906"
transform="matrix(0.26458333,0,0,0.26458333,88.611154,119.19859)">
<rect
x="0"
y="0"
width="3052.8701"
height="3351.5"
style="fill:#000000;fill-opacity:0.33000201;stroke:none"
id="rect4904" />
</g>
</mask>
<filter
id="alpha-3"
filterUnits="objectBoundingBox"
x="0"
y="0"
width="1"
height="1">
<feColorMatrix
type="matrix"
in="SourceGraphic"
values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
id="feColorMatrix4149-6" />
</filter>
<clipPath
id="clipPath18541">
<rect
y="0"
x="0"
width="18"
height="18"
id="rect18539" />
</clipPath>
<clipPath
id="clipPath18545">
<path
inkscape:connector-curvature="0"
d="M 0.140625,0.140625 H 17.199219 V 17.199219 H 0.140625 Z m 0,0"
id="path18543" />
</clipPath>
<clipPath
id="clip93">
<rect
y="0"
x="0"
width="22"
height="24"
id="rect4896" />
</clipPath>
<clipPath
id="clip94">
<path
inkscape:connector-curvature="0"
d="M 0.0390625,0.0390625 H 21.300781 V 23.421875 H 0.0390625 Z m 0,0"
id="path4893" />
</clipPath>
<mask
id="mask46">
<g
style="filter:url(#alpha-3)"
id="g4890"
transform="matrix(0.26458333,0,0,0.26458333,88.611154,119.19859)">
<rect
x="0"
y="0"
width="3052.8701"
height="3351.5"
style="fill:#000000;fill-opacity:0.14999402;stroke:none"
id="rect4888" />
</g>
</mask>
<filter
id="filter18556"
filterUnits="objectBoundingBox"
x="0"
y="0"
width="1"
height="1">
<feColorMatrix
type="matrix"
in="SourceGraphic"
values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
id="feColorMatrix18554" />
</filter>
<clipPath
id="clipPath18560">
<rect
y="0"
x="0"
width="22"
height="24"
id="rect18558" />
</clipPath>
<clipPath
id="clipPath18564">
<path
inkscape:connector-curvature="0"
d="M 0.0390625,0.0390625 H 21.300781 V 23.421875 H 0.0390625 Z m 0,0"
id="path18562" />
</clipPath>
<clipPath
id="clip91">
<rect
y="0"
x="0"
width="29"
height="32"
id="rect4880" />
</clipPath>
<clipPath
id="clip92">
<path
inkscape:connector-curvature="0"
d="M 0.507812,0.5 H 28.855469 V 31.679688 H 0.507812 Z m 0,0"
id="path4877" />
</clipPath>
<mask
id="mask45">
<g
style="filter:url(#alpha-3)"
id="g4874"
transform="matrix(0.26458333,0,0,0.26458333,88.611154,119.19859)">
<rect
x="0"
y="0"
width="3052.8701"
height="3351.5"
style="fill:#000000;fill-opacity:0.14999402;stroke:none"
id="rect4872" />
</g>
</mask>
<filter
id="filter18575"
filterUnits="objectBoundingBox"
x="0"
y="0"
width="1"
height="1">
<feColorMatrix
type="matrix"
in="SourceGraphic"
values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
id="feColorMatrix18573" />
</filter>
<clipPath
id="clipPath18579">
<rect
y="0"
x="0"
width="29"
height="32"
id="rect18577" />
</clipPath>
<clipPath
id="clipPath18583">
<path
inkscape:connector-curvature="0"
d="M 0.507812,0.5 H 28.855469 V 31.679688 H 0.507812 Z m 0,0"
id="path18581" />
</clipPath>
</defs>
<sodipodi:namedview <sodipodi:namedview
id="base" id="base"
pagecolor="#ffffff" pagecolor="#ffffff"
@@ -25,24 +326,24 @@
borderopacity="1.0" borderopacity="1.0"
inkscape:pageopacity="0.0" inkscape:pageopacity="0.0"
inkscape:pageshadow="2" inkscape:pageshadow="2"
inkscape:zoom="11.2"
inkscape:cx="7.3041493"
inkscape:cy="16.775019"
inkscape:zoom="3.959798"
inkscape:cx="6.9359976"
inkscape:cy="-37.491484"
inkscape:document-units="mm" inkscape:document-units="mm"
inkscape:current-layer="layer1" inkscape:current-layer="layer1"
showgrid="false" showgrid="false"
fit-margin-top="1.5"
fit-margin-left="1.5"
fit-margin-right="1.5"
fit-margin-bottom="1.5"
inkscape:window-width="1600"
inkscape:window-height="882"
inkscape:window-x="0"
inkscape:window-y="18"
inkscape:window-width="1274"
inkscape:window-height="1434"
inkscape:window-x="1280"
inkscape:window-y="0"
inkscape:window-maximized="0" inkscape:window-maximized="0"
units="px" />
units="px"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0" />
<metadata <metadata
id="metadata5155">
id="metadata15243">
<rdf:RDF> <rdf:RDF>
<cc:Work <cc:Work
rdf:about=""> rdf:about="">
@@ -57,29 +358,26 @@
inkscape:label="Layer 1" inkscape:label="Layer 1"
inkscape:groupmode="layer" inkscape:groupmode="layer"
id="layer1" id="layer1"
transform="translate(-116.53208,-79.379106)">
<g
id="g6580">
<path
d="m 120.679,87.144781 c -1.99518,-0.01238 -3.61825,-1.636715 -3.61775,-3.621032 7.6e-4,-1.985581 1.62358,-3.607391 3.61775,-3.615475 1.9876,0.0096 3.61068,1.63141 3.61876,3.615222 -0.005,1.985581 -1.62762,3.609917 -3.61825,3.621285 z"
style="fill:#e7e7e7;fill-opacity:1;fill-rule:nonzero;stroke:#939593;stroke-width:0.26458332;stroke-miterlimit:8.5;stroke-dasharray:none;stroke-opacity:1"
id="path5197"
inkscape:connector-curvature="0" />
<path
d="m 117.99124,83.523774 c 0.008,1.490954 1.19741,2.681544 2.68812,2.688113 1.48362,-0.004 2.68482,-1.202969 2.6828,-2.688113 -0.001,-1.482617 -1.20145,-2.678765 -2.6828,-2.682807 -1.48868,0.0063 -2.67751,1.193622 -2.68812,2.682807"
style="opacity:1;vector-effect:none;fill:#555555;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:8.5;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path5205"
inkscape:connector-curvature="0" />
<path
inkscape:connector-curvature="0"
id="path5219"
style="fill:#555555;fill-opacity:1;stroke:#3b3b3b;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:8.5;stroke-dasharray:none;stroke-opacity:1"
d="m 118.58505,83.524254 c 0.006,1.161792 0.93216,2.088649 2.0937,2.093701 1.15573,-0.0033 2.09092,-0.936709 2.08966,-2.093701 -7.6e-4,-1.154971 -0.93621,-2.086375 -2.08966,-2.089407 -1.15952,0.0051 -2.08562,0.929636 -2.0937,2.089407 z" />
<path
d="m 119.24446,83.524987 c 0.004,0.795242 0.63836,1.430072 1.43361,1.433609 0.79145,-0.0025 1.43184,-0.641398 1.43083,-1.433609 -5.1e-4,-0.790949 -0.64064,-1.42881 -1.43083,-1.430831 -0.79398,0.0035 -1.42805,0.636598 -1.43361,1.430831"
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.26458332;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:8.5;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path5209"
inkscape:connector-curvature="0" />
</g>
transform="translate(-74.416306,-97.613551)">
<path
inkscape:connector-curvature="0"
id="path7751"
d="m 79.593198,107.84507 c -2.786394,-0.018 -5.053266,-2.28618 -5.051891,-5.05739 0.0014,-2.77125 2.266876,-5.036748 5.051891,-5.049128 2.775366,0.0138 5.042242,2.279258 5.053266,5.049128 -0.0055,2.77259 -2.272386,5.04084 -5.05189,5.05739 z m 0,0"
style="fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:#636663;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path7757"
d="m 75.83942,102.78768 c 0.01101,2.0822 1.672939,3.74548 3.753778,3.75514 2.072569,-0.007 3.74964,-1.67982 3.746884,-3.75514 -0.0014,-2.06982 -1.677073,-3.740008 -3.746884,-3.745508 -2.078083,0.008 -3.738619,1.666028 -3.753778,3.745508"
style="fill:#545454;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775" />
<path
inkscape:connector-curvature="0"
id="path7759"
d="m 77.58953,102.79043 c 0.0055,1.11069 0.891589,1.99676 2.002289,2.00226 1.105185,-0.004 1.999534,-0.8957 1.998154,-2.00226 0,-1.10518 -0.894345,-1.99542 -1.998154,-1.99817 -1.107941,0.004 -1.99402,0.88883 -2.002289,1.99817"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775" />
<path
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#2a2b2a;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 76.73908,102.78956 c 0.0078,1.58293 1.270673,2.84574 2.853618,2.85358 1.575085,-0.006 2.849691,-1.27654 2.847724,-2.85358 0,-1.57508 -1.274601,-2.843827 -2.847724,-2.847746 -1.579013,0.0057 -2.841833,1.266736 -2.853618,2.847746"
id="path18715"
inkscape:connector-curvature="0" />
</g> </g>
</svg> </svg>

+ 400
- 63
res/ComponentLibrary/Rogan5PSGray.svg View File

@@ -9,15 +9,376 @@
xmlns="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="15.875mm"
height="15.875mm"
viewBox="0 0 15.875 15.875"
width="20.999922mm"
height="20.999928mm"
viewBox="0 0 20.999921 20.999928"
version="1.1" version="1.1"
id="svg16908"
inkscape:version="0.92.1 r"
sodipodi:docname="Rogan5PSGray.svg">
id="svg15246"
sodipodi:docname="Rogan5PSGray.svg"
inkscape:version="0.92.2 5c3e80d, 2017-08-06">
<defs <defs
id="defs16902" />
id="defs15240">
<clipPath
id="clip89">
<rect
y="0"
x="0"
width="18"
height="19"
id="rect4864" />
</clipPath>
<clipPath
id="clip90">
<path
inkscape:connector-curvature="0"
d="m 0.898438,0.128906 h 16.25 v 17.882813 h -16.25 z m 0,0"
id="path4861" />
</clipPath>
<mask
id="mask44">
<g
style="filter:url(#alpha)"
id="g4858"
transform="matrix(0.26458333,0,0,0.26458333,89.358789,128.57765)">
<rect
x="0"
y="0"
width="3052.8701"
height="3351.5"
style="fill:#000000;fill-opacity:0.14999402;stroke:none"
id="rect4856" />
</g>
</mask>
<filter
id="alpha"
filterUnits="objectBoundingBox"
x="0"
y="0"
width="1"
height="1">
<feColorMatrix
type="matrix"
in="SourceGraphic"
values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
id="feColorMatrix4149" />
</filter>
<clipPath
id="clipPath17821">
<rect
y="0"
x="0"
width="18"
height="19"
id="rect17819" />
</clipPath>
<clipPath
id="clipPath17825">
<path
inkscape:connector-curvature="0"
d="m 0.898438,0.128906 h 16.25 v 17.882813 h -16.25 z m 0,0"
id="path17823" />
</clipPath>
<clipPath
id="clip87">
<rect
y="0"
x="0"
width="24"
height="26"
id="rect4848" />
</clipPath>
<clipPath
id="clip88">
<path
inkscape:connector-curvature="0"
d="m 0.683594,0.921875 h 22.679687 v 24.9375 H 0.683594 Z m 0,0"
id="path4845" />
</clipPath>
<mask
id="mask43">
<g
style="filter:url(#alpha)"
id="g4842"
transform="matrix(0.26458333,0,0,0.26458333,89.358789,128.57765)">
<rect
x="0"
y="0"
width="3052.8701"
height="3351.5"
style="fill:#000000;fill-opacity:0.14999402;stroke:none"
id="rect4840" />
</g>
</mask>
<filter
id="filter17836"
filterUnits="objectBoundingBox"
x="0"
y="0"
width="1"
height="1">
<feColorMatrix
type="matrix"
in="SourceGraphic"
values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
id="feColorMatrix17834" />
</filter>
<clipPath
id="clipPath17840">
<rect
y="0"
x="0"
width="24"
height="26"
id="rect17838" />
</clipPath>
<clipPath
id="clipPath17844">
<path
inkscape:connector-curvature="0"
d="m 0.683594,0.921875 h 22.679687 v 24.9375 H 0.683594 Z m 0,0"
id="path17842" />
</clipPath>
<clipPath
id="clip95">
<rect
y="0"
x="0"
width="18"
height="18"
id="rect4912" />
</clipPath>
<clipPath
id="clip96">
<path
inkscape:connector-curvature="0"
d="M 0.140625,0.140625 H 17.199219 V 17.199219 H 0.140625 Z m 0,0"
id="path4909" />
</clipPath>
<mask
id="mask47">
<g
style="filter:url(#alpha-3)"
id="g4906"
transform="matrix(0.26458333,0,0,0.26458333,88.611154,119.19859)">
<rect
x="0"
y="0"
width="3052.8701"
height="3351.5"
style="fill:#000000;fill-opacity:0.33000201;stroke:none"
id="rect4904" />
</g>
</mask>
<filter
id="alpha-3"
filterUnits="objectBoundingBox"
x="0"
y="0"
width="1"
height="1">
<feColorMatrix
type="matrix"
in="SourceGraphic"
values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
id="feColorMatrix4149-6" />
</filter>
<clipPath
id="clipPath18541">
<rect
y="0"
x="0"
width="18"
height="18"
id="rect18539" />
</clipPath>
<clipPath
id="clipPath18545">
<path
inkscape:connector-curvature="0"
d="M 0.140625,0.140625 H 17.199219 V 17.199219 H 0.140625 Z m 0,0"
id="path18543" />
</clipPath>
<clipPath
id="clip93">
<rect
y="0"
x="0"
width="22"
height="24"
id="rect4896" />
</clipPath>
<clipPath
id="clip94">
<path
inkscape:connector-curvature="0"
d="M 0.0390625,0.0390625 H 21.300781 V 23.421875 H 0.0390625 Z m 0,0"
id="path4893" />
</clipPath>
<mask
id="mask46">
<g
style="filter:url(#alpha-3)"
id="g4890"
transform="matrix(0.26458333,0,0,0.26458333,88.611154,119.19859)">
<rect
x="0"
y="0"
width="3052.8701"
height="3351.5"
style="fill:#000000;fill-opacity:0.14999402;stroke:none"
id="rect4888" />
</g>
</mask>
<filter
id="filter18556"
filterUnits="objectBoundingBox"
x="0"
y="0"
width="1"
height="1">
<feColorMatrix
type="matrix"
in="SourceGraphic"
values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
id="feColorMatrix18554" />
</filter>
<clipPath
id="clipPath18560">
<rect
y="0"
x="0"
width="22"
height="24"
id="rect18558" />
</clipPath>
<clipPath
id="clipPath18564">
<path
inkscape:connector-curvature="0"
d="M 0.0390625,0.0390625 H 21.300781 V 23.421875 H 0.0390625 Z m 0,0"
id="path18562" />
</clipPath>
<clipPath
id="clip91">
<rect
y="0"
x="0"
width="29"
height="32"
id="rect4880" />
</clipPath>
<clipPath
id="clip92">
<path
inkscape:connector-curvature="0"
d="M 0.507812,0.5 H 28.855469 V 31.679688 H 0.507812 Z m 0,0"
id="path4877" />
</clipPath>
<mask
id="mask45">
<g
style="filter:url(#alpha-3)"
id="g4874"
transform="matrix(0.26458333,0,0,0.26458333,88.611154,119.19859)">
<rect
x="0"
y="0"
width="3052.8701"
height="3351.5"
style="fill:#000000;fill-opacity:0.14999402;stroke:none"
id="rect4872" />
</g>
</mask>
<filter
id="filter18575"
filterUnits="objectBoundingBox"
x="0"
y="0"
width="1"
height="1">
<feColorMatrix
type="matrix"
in="SourceGraphic"
values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
id="feColorMatrix18573" />
</filter>
<clipPath
id="clipPath18579">
<rect
y="0"
x="0"
width="29"
height="32"
id="rect18577" />
</clipPath>
<clipPath
id="clipPath18583">
<path
inkscape:connector-curvature="0"
d="M 0.507812,0.5 H 28.855469 V 31.679688 H 0.507812 Z m 0,0"
id="path18581" />
</clipPath>
<clipPath
id="clip202">
<rect
y="0"
x="0"
width="18"
height="18"
id="rect5795" />
</clipPath>
<clipPath
id="clip203">
<path
inkscape:connector-curvature="0"
d="M 0.855469,0.140625 H 17.914062 V 17.199219 H 0.855469 Z m 0,0"
id="path5792" />
</clipPath>
<mask
id="mask104">
<g
style="filter:url(#alpha-7)"
id="g5789"
transform="matrix(0.26458333,0,0,0.26458333,74.416306,97.613551)">
<rect
x="0"
y="0"
width="3052.8701"
height="3351.5"
style="fill:#000000;fill-opacity:0.33000201;stroke:none"
id="rect5787" />
</g>
</mask>
<filter
id="alpha-7"
filterUnits="objectBoundingBox"
x="0"
y="0"
width="1"
height="1">
<feColorMatrix
type="matrix"
in="SourceGraphic"
values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"
id="feColorMatrix4149-5" />
</filter>
<clipPath
id="clipPath18765">
<rect
y="0"
x="0"
width="18"
height="18"
id="rect18763" />
</clipPath>
<clipPath
id="clipPath18769">
<path
inkscape:connector-curvature="0"
d="M 0.855469,0.140625 H 17.914062 V 17.199219 H 0.855469 Z m 0,0"
id="path18767" />
</clipPath>
</defs>
<sodipodi:namedview <sodipodi:namedview
id="base" id="base"
pagecolor="#ffffff" pagecolor="#ffffff"
@@ -25,23 +386,24 @@
borderopacity="1.0" borderopacity="1.0"
inkscape:pageopacity="0.0" inkscape:pageopacity="0.0"
inkscape:pageshadow="2" inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="410.21428"
inkscape:cy="-94.068034"
inkscape:zoom="5.6"
inkscape:cx="41.383162"
inkscape:cy="18.259148"
inkscape:document-units="mm" inkscape:document-units="mm"
inkscape:current-layer="layer1" inkscape:current-layer="layer1"
showgrid="false" showgrid="false"
inkscape:window-width="1274"
inkscape:window-height="1434"
inkscape:window-x="1280"
inkscape:window-y="0"
inkscape:window-maximized="0"
units="px"
fit-margin-top="0" fit-margin-top="0"
fit-margin-left="0" fit-margin-left="0"
fit-margin-right="0" fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1600"
inkscape:window-height="882"
inkscape:window-x="0"
inkscape:window-y="18"
inkscape:window-maximized="0" />
fit-margin-bottom="0" />
<metadata <metadata
id="metadata16905">
id="metadata15243">
<rdf:RDF> <rdf:RDF>
<cc:Work <cc:Work
rdf:about=""> rdf:about="">
@@ -56,51 +418,26 @@
inkscape:label="Layer 1" inkscape:label="Layer 1"
inkscape:groupmode="layer" inkscape:groupmode="layer"
id="layer1" id="layer1"
transform="translate(14.419789,-135.28378)">
<g
id="g3056"
transform="matrix(0.26668571,0,0,-0.26668571,-129.9646,748.81778)"
style="stroke-width:1.32282221">
<g
transform="translate(492.7891,2270.8252)"
id="g4765"
style="stroke-width:1.32282221">
<path
inkscape:connector-curvature="0"
id="path4767"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.32282221"
d="m 0,0 c 0,-16.437 -13.325,-29.764 -29.764,-29.764 -16.435,0 -29.763,13.327 -29.763,29.764 0,16.437 13.328,29.763 29.763,29.763 C -13.325,29.763 0,16.437 0,0" />
</g>
<g
transform="translate(484.9946,2270.8252)"
id="g4769"
style="stroke-width:1.32282221">
<path
inkscape:connector-curvature="0"
id="path4771"
style="fill:#555555;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.32282221"
d="m 0,0 c 0,-12.133 -9.835,-21.969 -21.969,-21.969 -12.131,0 -21.969,9.836 -21.969,21.969 0,12.132 9.838,21.968 21.969,21.968 C -9.835,21.968 0,12.132 0,0" />
</g>
<g
transform="translate(489.1211,2270.8247)"
id="g4773"
style="stroke-width:1.32282221">
<path
inkscape:connector-curvature="0"
id="path4775"
style="fill:none;stroke:#666666;stroke-width:0.66141111;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 0,0 c 0,-14.412 -11.683,-26.096 -26.096,-26.096 -14.41,0 -26.095,11.684 -26.095,26.096 0,14.411 11.685,26.096 26.095,26.096 C -11.683,26.096 0,14.411 0,0 Z" />
</g>
<g
transform="translate(465.5254,2300.4756)"
id="g4777"
style="stroke-width:1.32282221">
<path
inkscape:connector-curvature="0"
id="path4779"
style="fill:#555555;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.32282221"
d="M 0,0 C -0.825,0.068 -1.657,0.112 -2.5,0.112 -3.343,0.112 -4.175,0.068 -5,0 v -10.1 h 5 z" />
</g>
</g>
transform="translate(-49.487365,-83.085262)">
<path
inkscape:connector-curvature="0"
id="path7535"
d="m 70.487287,93.584535 c 0,5.798781 -4.700489,10.500655 -10.500649,10.500655 -5.797409,0 -10.499273,-4.701874 -10.499273,-10.500655 0,-5.797405 4.701864,-10.499273 10.499273,-10.499273 5.80016,0 10.500649,4.701868 10.500649,10.499273"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775" />
<path
inkscape:connector-curvature="0"
id="path7537"
d="m 67.737413,93.583846 c 0,4.281562 -3.468522,7.751464 -7.750087,7.751464 -4.27881,0 -7.750087,-3.469902 -7.750087,-7.751464 0,-4.27881 3.471277,-7.748707 7.750087,-7.748707 4.281565,0 7.750087,3.469897 7.750087,7.748707"
style="fill:#545454;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775" />
<path
inkscape:connector-curvature="0"
id="path7539"
d="m 69.193309,93.584536 c 0,5.084961 -4.121711,9.206674 -9.206671,9.206674 -5.083584,0 -9.205295,-4.121713 -9.205295,-9.206674 0,-5.083584 4.121711,-9.205295 9.205295,-9.205295 5.08496,0 9.206671,4.121711 9.206671,9.205295 z m 0,0"
style="fill:none;stroke:#636363;stroke-width:0.17638887;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path7541"
d="m 60.869959,83.125225 c -0.292143,-0.02343 -0.585665,-0.03996 -0.881945,-0.03996 -0.297656,0 -0.591178,0.01655 -0.881944,0.03996 v 3.563609 h 1.763889 z m 0,0"
style="fill:#545454;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775" />
</g> </g>
</svg> </svg>

+ 39
- 63
res/ComponentLibrary/Rogan6PSWhite.svg View File

@@ -9,15 +9,15 @@
xmlns="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="23.547916mm"
height="23.549713mm"
viewBox="0 0 23.547916 23.549713"
width="31.437181mm"
height="31.439939mm"
viewBox="0 0 31.437181 31.439939"
version="1.1" version="1.1"
id="svg16908"
inkscape:version="0.92.1 r"
sodipodi:docname="Rogan6PSWhite.svg">
id="svg15246"
sodipodi:docname="Rogan6PSWhite.svg"
inkscape:version="0.92.2 5c3e80d, 2017-08-06">
<defs <defs
id="defs16902" />
id="defs15240" />
<sodipodi:namedview <sodipodi:namedview
id="base" id="base"
pagecolor="#ffffff" pagecolor="#ffffff"
@@ -25,23 +25,24 @@
borderopacity="1.0" borderopacity="1.0"
inkscape:pageopacity="0.0" inkscape:pageopacity="0.0"
inkscape:pageshadow="2" inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="125.92857"
inkscape:cy="-184.06803"
inkscape:zoom="1.979899"
inkscape:cx="67.580392"
inkscape:cy="48.160231"
inkscape:document-units="mm" inkscape:document-units="mm"
inkscape:current-layer="layer1" inkscape:current-layer="layer1"
showgrid="false" showgrid="false"
inkscape:window-width="1274"
inkscape:window-height="1434"
inkscape:window-x="1280"
inkscape:window-y="0"
inkscape:window-maximized="0"
units="px"
fit-margin-top="0" fit-margin-top="0"
fit-margin-left="0" fit-margin-left="0"
fit-margin-right="0" fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1600"
inkscape:window-height="882"
inkscape:window-x="0"
inkscape:window-y="18"
inkscape:window-maximized="0" />
fit-margin-bottom="0" />
<metadata <metadata
id="metadata16905">
id="metadata15243">
<rdf:RDF> <rdf:RDF>
<cc:Work <cc:Work
rdf:about=""> rdf:about="">
@@ -56,51 +57,26 @@
inkscape:label="Layer 1" inkscape:label="Layer 1"
inkscape:groupmode="layer" inkscape:groupmode="layer"
id="layer1" id="layer1"
transform="translate(-60.79747,-103.79657)">
<g
id="g3066"
transform="matrix(0.26424486,0,0,-0.26424486,-14.16478,715.62521)"
style="stroke-width:1.33504117">
<g
transform="translate(372.7988,2270.8184)"
id="g4793"
style="stroke-width:1.33504117">
<path
inkscape:connector-curvature="0"
id="path4795"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33504117"
d="m 0,0 c -0.006,-24.605 -19.961,-44.559 -44.564,-44.554 -24.606,0.004 -44.555,19.964 -44.55,44.571 0.005,24.604 19.961,44.554 44.565,44.549 C -19.945,44.562 0.004,24.604 0,0" />
</g>
<g
transform="translate(362.2578,2270.8224)"
id="g4797"
style="stroke-width:1.33504117">
<path
inkscape:connector-curvature="0"
id="path4799"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33504117"
d="m 0,0 c -0.004,-18.784 -15.232,-34.014 -34.021,-34.011 -18.784,0.002 -34.014,15.239 -34.011,34.023 0.003,18.784 15.24,34.005 34.022,34.003 C -15.221,34.012 0.004,18.783 0,0" />
</g>
<g
transform="translate(367.5463,2270.8184)"
id="g4801"
style="stroke-width:1.33504117">
<path
inkscape:connector-curvature="0"
id="path4803"
style="fill:none;stroke:#666666;stroke-width:0.88913745;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 0,0 c -0.004,-21.708 -17.605,-39.302 -39.313,-39.298 -21.707,0.004 -39.3,17.604 -39.296,39.312 0.004,21.704 17.603,39.299 39.311,39.296 C -17.592,39.306 0.004,21.704 0,0 Z" />
</g>
<g
transform="translate(331.0762,2315.2852)"
id="g4805"
style="stroke-width:1.33504117">
<path
inkscape:connector-curvature="0"
id="path4807"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.33504117"
d="M 0,0 C -0.936,0.059 -1.875,0.1 -2.826,0.1 -3.777,0.1 -4.718,0.059 -5.654,0 l -0.004,-23.254 5.654,-0.002 z" />
</g>
</g>
transform="translate(-89.358789,-128.57765)">
<path
inkscape:connector-curvature="0"
id="path7553"
d="m 120.79597,144.29968 c -10e-4,8.68027 -7.04177,15.71929 -15.72066,15.71791 -8.680255,-0.001 -15.717897,-7.04315 -15.716521,-15.72342 0.0028,-8.68026 7.041776,-15.7179 15.722041,-15.71652 8.68026,0.001 15.7179,7.04315 15.71514,15.72203"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775" />
<path
inkscape:connector-curvature="0"
id="path7555"
d="m 117.07734,144.29831 c -0.001,6.62699 -5.37297,11.99996 -12.00134,11.99858 -6.626987,0 -11.999954,-5.37573 -11.998578,-12.00271 0.0014,-6.62699 5.375726,-11.99583 12.001338,-11.99583 6.62837,0.001 11.99996,5.37435 11.99858,11.99996"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775" />
<path
inkscape:connector-curvature="0"
id="path7557"
d="m 118.9432,144.30037 c -0.001,7.65776 -6.21081,13.86444 -13.86858,13.86307 -7.657755,-0.001 -13.864438,-6.21082 -13.863059,-13.86858 0.0014,-7.65638 6.209439,-13.86306 13.868579,-13.86306 7.65638,10e-4 13.86444,6.2122 13.86306,13.86857 z m 0,0"
style="fill:none;stroke:#636363;stroke-width:0.23495001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="path7559"
d="m 106.07853,128.61348 c -0.33073,-0.0207 -0.66146,-0.0358 -0.9977,-0.0358 -0.33487,0 -0.66697,0.0152 -0.9977,0.0358 l -10e-4,8.20346 h 1.99402 z m 0,0"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775" />
</g> </g>
</svg> </svg>

Loading…
Cancel
Save