A32X: Fix Lower ECAM Wheel
This commit is contained in:
parent
941328ae8c
commit
6e7ec52ee5
3 changed files with 172 additions and 298 deletions
|
@ -685,7 +685,7 @@ var canvas_lowerECAM_fctl = {
|
||||||
}
|
}
|
||||||
|
|
||||||
# Hydraulic Indicators
|
# Hydraulic Indicators
|
||||||
if (getprop("/systems/hydraulic/blue-psi") > 1500) {
|
if (getprop("/systems/hydraulic/blue-psi") >= 1500) {
|
||||||
me["ailLblue"].setColor(0.0667,0.7294,0.3137);
|
me["ailLblue"].setColor(0.0667,0.7294,0.3137);
|
||||||
me["ailRblue"].setColor(0.0667,0.7294,0.3137);
|
me["ailRblue"].setColor(0.0667,0.7294,0.3137);
|
||||||
me["elevLblue"].setColor(0.0667,0.7294,0.3137);
|
me["elevLblue"].setColor(0.0667,0.7294,0.3137);
|
||||||
|
@ -701,7 +701,7 @@ var canvas_lowerECAM_fctl = {
|
||||||
me["spdbrkblue"].setColor(0.7333,0.3803,0);
|
me["spdbrkblue"].setColor(0.7333,0.3803,0);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (getprop("/systems/hydraulic/green-psi") > 1500) {
|
if (getprop("/systems/hydraulic/green-psi") >= 1500) {
|
||||||
me["ailLgreen"].setColor(0.0667,0.7294,0.3137);
|
me["ailLgreen"].setColor(0.0667,0.7294,0.3137);
|
||||||
me["ailRgreen"].setColor(0.0667,0.7294,0.3137);
|
me["ailRgreen"].setColor(0.0667,0.7294,0.3137);
|
||||||
me["elevLgreen"].setColor(0.0667,0.7294,0.3137);
|
me["elevLgreen"].setColor(0.0667,0.7294,0.3137);
|
||||||
|
@ -717,7 +717,7 @@ var canvas_lowerECAM_fctl = {
|
||||||
me["spdbrkgreen"].setColor(0.7333,0.3803,0);
|
me["spdbrkgreen"].setColor(0.7333,0.3803,0);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (getprop("/systems/hydraulic/yellow-psi") > 1500) {
|
if (getprop("/systems/hydraulic/yellow-psi") >= 1500) {
|
||||||
me["elevRyellow"].setColor(0.0667,0.7294,0.3137);
|
me["elevRyellow"].setColor(0.0667,0.7294,0.3137);
|
||||||
me["rudderyellow"].setColor(0.0667,0.7294,0.3137);
|
me["rudderyellow"].setColor(0.0667,0.7294,0.3137);
|
||||||
me["PTyellow"].setColor(0.0667,0.7294,0.3137);
|
me["PTyellow"].setColor(0.0667,0.7294,0.3137);
|
||||||
|
@ -741,7 +741,9 @@ var canvas_lowerECAM_wheel = {
|
||||||
return m;
|
return m;
|
||||||
},
|
},
|
||||||
getKeys: func() {
|
getKeys: func() {
|
||||||
return ["TAT","SAT","GW","leftdoor","autobrk","autobrkind","NWSyellowrect","altnbrkyellow","normbrkgreen","spoiler1Rex","spoiler1Rrt","spoiler2Rex","spoiler2Rrt","spoiler3Rex","spoiler3Rrt","spoiler4Rex","spoiler4Rrt","spoiler5Rex","spoiler5Rrt","spoiler1Lex","spoiler1Lrt","spoiler2Lex","spoiler2Lrt","spoiler3Lex","spoiler3Lrt","spoiler4Lex","spoiler4Lrt","spoiler5Lex","spoiler5Lrt","spoiler1Rf","spoiler2Rf","spoiler3Rf","spoiler4Rf","spoiler5Rf","spoiler1Lf","spoiler2Lf","spoiler3Lf","spoiler4Lf","spoiler5Lf","braketemp1","braketemp2","braketemp3","braketemp4","Triangle-Left1a","Triangle-Left1b","Triangle-Left1c","Triangle-Left2a","Triangle-Left2b","Triangle-Left2c","Triangle-Right1a","Triangle-Right1b","Triangle-Right1c","Triangle-Right2a","Triangle-Right2b","Triangle-Right2c","Triangle-Nose1a","Triangle-Nose1b","Triangle-Nose1c","Triangle-Nose2a","Triangle-Nose2b","Triangle-Nose2c"];
|
return ["TAT","SAT","GW","leftdoor","autobrk","autobrkind","NWS","altnbrk","normbrk","spoiler1Rex","spoiler1Rrt","spoiler2Rex","spoiler2Rrt","spoiler3Rex","spoiler3Rrt","spoiler4Rex","spoiler4Rrt","spoiler5Rex","spoiler5Rrt","spoiler1Lex","spoiler1Lrt",
|
||||||
|
"spoiler2Lex","spoiler2Lrt","spoiler3Lex","spoiler3Lrt","spoiler4Lex","spoiler4Lrt","spoiler5Lex","spoiler5Lrt","spoiler1Rf","spoiler2Rf","spoiler3Rf","spoiler4Rf","spoiler5Rf","spoiler1Lf","spoiler2Lf","spoiler3Lf","spoiler4Lf","spoiler5Lf",
|
||||||
|
"braketemp1","braketemp2","braketemp3","braketemp4","Triangle-Left1","Triangle-Left2","Triangle-Nose1","Triangle-Nose2","Triangle-Right1","Triangle-Right2"];
|
||||||
},
|
},
|
||||||
update: func() {
|
update: func() {
|
||||||
blue_psi = getprop("/systems/hydraulic/blue-psi");
|
blue_psi = getprop("/systems/hydraulic/blue-psi");
|
||||||
|
@ -753,100 +755,52 @@ var canvas_lowerECAM_wheel = {
|
||||||
rightgear = getprop("gear/gear[2]/position-norm");
|
rightgear = getprop("gear/gear[2]/position-norm");
|
||||||
|
|
||||||
# Triangles
|
# Triangles
|
||||||
if (leftgear == 0 or leftgear > 0.8) {
|
if (leftgear == 0) {
|
||||||
me["Triangle-Left1a"].hide();
|
me["Triangle-Left1"].hide();
|
||||||
me["Triangle-Left1b"].hide();
|
me["Triangle-Left2"].hide();
|
||||||
me["Triangle-Left1c"].hide();
|
|
||||||
me["Triangle-Left2a"].hide();
|
|
||||||
me["Triangle-Left2b"].hide();
|
|
||||||
me["Triangle-Left2c"].hide();
|
|
||||||
} else {
|
} else {
|
||||||
me["Triangle-Left1a"].show();
|
me["Triangle-Left1"].show();
|
||||||
me["Triangle-Left1b"].show();
|
me["Triangle-Left2"].show();
|
||||||
me["Triangle-Left1c"].show();
|
|
||||||
me["Triangle-Left2a"].show();
|
|
||||||
me["Triangle-Left2b"].show();
|
|
||||||
me["Triangle-Left2c"].show();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (leftgear == 1) {
|
if (leftgear == 1) {
|
||||||
me["Triangle-Left1a"].setColor(0,1,0);
|
me["Triangle-Left1"].setColor(0.0667,0.7294,0.3137);
|
||||||
me["Triangle-Left1b"].setColor(0,1,0);
|
me["Triangle-Left2"].setColor(0.0667,0.7294,0.3137);
|
||||||
me["Triangle-Left1c"].setColor(0,1,0);
|
|
||||||
me["Triangle-Left2a"].setColor(0,1,0);
|
|
||||||
me["Triangle-Left2b"].setColor(0,1,0);
|
|
||||||
me["Triangle-Left2c"].setColor(0,1,0);
|
|
||||||
} else {
|
} else {
|
||||||
me["Triangle-Left1a"].setColor(1,0,0);
|
me["Triangle-Left1"].setColor(1,0,0);
|
||||||
me["Triangle-Left1b"].setColor(1,0,0);
|
me["Triangle-Left2"].setColor(1,0,0);
|
||||||
me["Triangle-Left1c"].setColor(1,0,0);
|
|
||||||
me["Triangle-Left2a"].setColor(1,0,0);
|
|
||||||
me["Triangle-Left2b"].setColor(1,0,0);
|
|
||||||
me["Triangle-Left2c"].setColor(1,0,0);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (nosegear == 0 or nosegear > 0.8) {
|
if (nosegear == 0) {
|
||||||
me["Triangle-Nose1a"].hide();
|
me["Triangle-Nose1"].hide();
|
||||||
me["Triangle-Nose1b"].hide();
|
me["Triangle-Nose2"].hide();
|
||||||
me["Triangle-Nose1c"].hide();
|
|
||||||
me["Triangle-Nose2a"].hide();
|
|
||||||
me["Triangle-Nose2b"].hide();
|
|
||||||
me["Triangle-Nose2c"].hide();
|
|
||||||
} else {
|
} else {
|
||||||
me["Triangle-Nose1a"].show();
|
me["Triangle-Nose1"].show();
|
||||||
me["Triangle-Nose1b"].show();
|
me["Triangle-Nose2"].show();
|
||||||
me["Triangle-Nose1c"].show();
|
|
||||||
me["Triangle-Nose2a"].show();
|
|
||||||
me["Triangle-Nose2b"].show();
|
|
||||||
me["Triangle-Nose2c"].show();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (nosegear == 1) {
|
if (nosegear == 1) {
|
||||||
me["Triangle-Nose1a"].setColor(0,1,0);
|
me["Triangle-Nose1"].setColor(0.0667,0.7294,0.3137);
|
||||||
me["Triangle-Nose1b"].setColor(0,1,0);
|
me["Triangle-Nose2"].setColor(0.0667,0.7294,0.3137);
|
||||||
me["Triangle-Nose1c"].setColor(0,1,0);
|
|
||||||
me["Triangle-Nose2a"].setColor(0,1,0);
|
|
||||||
me["Triangle-Nose2b"].setColor(0,1,0);
|
|
||||||
me["Triangle-Nose2c"].setColor(0,1,0);
|
|
||||||
} else {
|
} else {
|
||||||
me["Triangle-Nose1a"].setColor(1,0,0);
|
me["Triangle-Nose1"].setColor(1,0,0);
|
||||||
me["Triangle-Nose1b"].setColor(1,0,0);
|
me["Triangle-Nose2"].setColor(1,0,0);
|
||||||
me["Triangle-Nose1c"].setColor(1,0,0);
|
|
||||||
me["Triangle-Nose2a"].setColor(1,0,0);
|
|
||||||
me["Triangle-Nose2b"].setColor(1,0,0);
|
|
||||||
me["Triangle-Nose2c"].setColor(1,0,0);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (rightgear == 0 or rightgear > 0.8) {
|
if (rightgear == 0) {
|
||||||
me["Triangle-Right1a"].hide();
|
me["Triangle-Right1"].hide();
|
||||||
me["Triangle-Right1b"].hide();
|
me["Triangle-Right2"].hide();
|
||||||
me["Triangle-Right1c"].hide();
|
|
||||||
me["Triangle-Right2a"].hide();
|
|
||||||
me["Triangle-Right2b"].hide();
|
|
||||||
me["Triangle-Right2c"].hide();
|
|
||||||
} else {
|
} else {
|
||||||
me["Triangle-Right1a"].show();
|
me["Triangle-Right1"].show();
|
||||||
me["Triangle-Right1b"].show();
|
me["Triangle-Right2"].show();
|
||||||
me["Triangle-Right1c"].show();
|
|
||||||
me["Triangle-Right2a"].show();
|
|
||||||
me["Triangle-Right2b"].show();
|
|
||||||
me["Triangle-Right2c"].show();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (rightgear == 1) {
|
if (rightgear == 1) {
|
||||||
me["Triangle-Right1a"].setColor(0,1,0);
|
me["Triangle-Right1"].setColor(0.0667,0.7294,0.3137);
|
||||||
me["Triangle-Right1b"].setColor(0,1,0);
|
me["Triangle-Right2"].setColor(0.0667,0.7294,0.3137);
|
||||||
me["Triangle-Right1c"].setColor(0,1,0);
|
|
||||||
me["Triangle-Right2a"].setColor(0,1,0);
|
|
||||||
me["Triangle-Right2b"].setColor(0,1,0);
|
|
||||||
me["Triangle-Right2c"].setColor(0,1,0);
|
|
||||||
} else {
|
} else {
|
||||||
me["Triangle-Right1a"].setColor(1,0,0);
|
me["Triangle-Right1"].setColor(1,0,0);
|
||||||
me["Triangle-Right1b"].setColor(1,0,0);
|
me["Triangle-Right2"].setColor(1,0,0);
|
||||||
me["Triangle-Right1c"].setColor(1,0,0);
|
|
||||||
me["Triangle-Right2a"].setColor(1,0,0);
|
|
||||||
me["Triangle-Right2b"].setColor(1,0,0);
|
|
||||||
me["Triangle-Right2c"].setColor(1,0,0);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# Autobrake
|
# Autobrake
|
||||||
|
@ -1092,18 +1046,18 @@ var canvas_lowerECAM_wheel = {
|
||||||
}
|
}
|
||||||
|
|
||||||
# Hydraulic Boxes
|
# Hydraulic Boxes
|
||||||
if (getprop("/systems/hydraulic/green-psi") > 1500) {
|
if (getprop("/systems/hydraulic/green-psi") >= 1500) {
|
||||||
me["normbrkgreen"].setColor(0.0667,0.7294,0.3137);
|
me["normbrk"].hide();
|
||||||
} else {
|
} else {
|
||||||
me["normbrkgreen"].setColor(0.7333,0.3803,0);
|
me["normbrk"].setColor(0.7333,0.3803,0);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (getprop("/systems/hydraulic/yellow-psi") > 1500) {
|
if (getprop("/systems/hydraulic/yellow-psi") >= 1500) {
|
||||||
me["altnbrkyellow"].setColor(0.0667,0.7294,0.3137);
|
me["altnbrk"].hide();
|
||||||
me["NWSyellowrect"].setColor(0.0667,0.7294,0.3137);
|
me["NWS"].hide();
|
||||||
} else {
|
} else {
|
||||||
me["altnbrkyellow"].setColor(0.7333,0.3803,0);
|
me["altnbrk"].setColor(0.7333,0.3803,0);
|
||||||
me["NWSyellowrect"].setColor(0.7333,0.3803,0);
|
me["NWS"].setColor(0.7333,0.3803,0);
|
||||||
}
|
}
|
||||||
|
|
||||||
# Hide not yet implemented stuff
|
# Hide not yet implemented stuff
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
viewBox="0 0 1024 1024"
|
viewBox="0 0 1024 1024"
|
||||||
version="1.1"
|
version="1.1"
|
||||||
id="svg2"
|
id="svg2"
|
||||||
inkscape:version="0.91 r13725"
|
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
|
||||||
sodipodi:docname="wheel.svg">
|
sodipodi:docname="wheel.svg">
|
||||||
<metadata
|
<metadata
|
||||||
id="metadata375">
|
id="metadata375">
|
||||||
|
@ -22,7 +22,7 @@
|
||||||
<dc:format>image/svg+xml</dc:format>
|
<dc:format>image/svg+xml</dc:format>
|
||||||
<dc:type
|
<dc:type
|
||||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
<dc:title />
|
<dc:title></dc:title>
|
||||||
</cc:Work>
|
</cc:Work>
|
||||||
</rdf:RDF>
|
</rdf:RDF>
|
||||||
</metadata>
|
</metadata>
|
||||||
|
@ -32,25 +32,26 @@
|
||||||
pagecolor="#000000"
|
pagecolor="#000000"
|
||||||
bordercolor="#666666"
|
bordercolor="#666666"
|
||||||
borderopacity="1"
|
borderopacity="1"
|
||||||
objecttolerance="20"
|
objecttolerance="10"
|
||||||
gridtolerance="10"
|
gridtolerance="10"
|
||||||
guidetolerance="10"
|
guidetolerance="10"
|
||||||
inkscape:pageopacity="1"
|
inkscape:pageopacity="1"
|
||||||
inkscape:pageshadow="2"
|
inkscape:pageshadow="2"
|
||||||
inkscape:window-width="1366"
|
inkscape:window-width="1920"
|
||||||
inkscape:window-height="706"
|
inkscape:window-height="1030"
|
||||||
id="namedview371"
|
id="namedview371"
|
||||||
showgrid="true"
|
showgrid="true"
|
||||||
inkscape:zoom="2.3476051"
|
inkscape:zoom="2"
|
||||||
inkscape:cx="668.17088"
|
inkscape:cx="386.22086"
|
||||||
inkscape:cy="943.33059"
|
inkscape:cy="871.33562"
|
||||||
inkscape:window-x="-8"
|
inkscape:window-x="1592"
|
||||||
inkscape:window-y="-8"
|
inkscape:window-y="-8"
|
||||||
inkscape:window-maximized="1"
|
inkscape:window-maximized="1"
|
||||||
inkscape:current-layer="svg2">
|
inkscape:current-layer="svg2">
|
||||||
<inkscape:grid
|
<inkscape:grid
|
||||||
type="xygrid"
|
type="xygrid"
|
||||||
id="grid5153" />
|
id="grid5153"
|
||||||
|
snapvisiblegridlinesonly="true" />
|
||||||
</sodipodi:namedview>
|
</sodipodi:namedview>
|
||||||
<g
|
<g
|
||||||
id="g913">
|
id="g913">
|
||||||
|
@ -220,7 +221,7 @@
|
||||||
id="tspan4478"
|
id="tspan4478"
|
||||||
x="505.625"
|
x="505.625"
|
||||||
y="284"
|
y="284"
|
||||||
style="font-size:32px;line-height:1.25" /></text>
|
style="font-size:32px;line-height:1.25"> </tspan></text>
|
||||||
<text
|
<text
|
||||||
xml:space="preserve"
|
xml:space="preserve"
|
||||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#bb6100;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#bb6100;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
@ -262,7 +263,7 @@
|
||||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#bb6100;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#bb6100;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
x="396.29852"
|
x="396.29852"
|
||||||
y="364.52844"
|
y="364.52844"
|
||||||
id="nwstext"
|
id="NWStext"
|
||||||
inkscape:label="#text4261"><tspan
|
inkscape:label="#text4261"><tspan
|
||||||
sodipodi:role="line"
|
sodipodi:role="line"
|
||||||
id="tspan4263"
|
id="tspan4263"
|
||||||
|
@ -295,7 +296,7 @@
|
||||||
style="font-size:32px;line-height:1.25">ANTI SKID</tspan></text>
|
style="font-size:32px;line-height:1.25">ANTI SKID</tspan></text>
|
||||||
<text
|
<text
|
||||||
xml:space="preserve"
|
xml:space="preserve"
|
||||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#bb6100;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#11ba50;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
|
||||||
x="435.54364"
|
x="435.54364"
|
||||||
y="667.42596"
|
y="667.42596"
|
||||||
id="ALTNbrk"
|
id="ALTNbrk"
|
||||||
|
@ -304,7 +305,7 @@
|
||||||
id="tspan4275"
|
id="tspan4275"
|
||||||
x="435.54364"
|
x="435.54364"
|
||||||
y="667.42596"
|
y="667.42596"
|
||||||
style="font-size:32px;line-height:1.25">ALTN BRK</tspan></text>
|
style="font-size:32px;line-height:1.25;fill:#11ba50;fill-opacity:1;">ALTN BRK</tspan></text>
|
||||||
<text
|
<text
|
||||||
xml:space="preserve"
|
xml:space="preserve"
|
||||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#11ba50;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#11ba50;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
@ -333,14 +334,14 @@
|
||||||
id="NORMbrk"
|
id="NORMbrk"
|
||||||
y="616.38831"
|
y="616.38831"
|
||||||
x="426.55933"
|
x="426.55933"
|
||||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#11ba50;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#11ba50;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
|
||||||
xml:space="preserve"
|
xml:space="preserve"
|
||||||
inkscape:label="#text4285"><tspan
|
inkscape:label="#text4285"><tspan
|
||||||
y="616.38831"
|
y="616.38831"
|
||||||
x="426.55933"
|
x="426.55933"
|
||||||
id="tspan4287"
|
id="tspan4287"
|
||||||
sodipodi:role="line"
|
sodipodi:role="line"
|
||||||
style="font-size:32px;line-height:1.25">NORM BRK</tspan></text>
|
style="font-size:32px;line-height:1.25;fill:#11ba50;fill-opacity:1;">NORM BRK</tspan></text>
|
||||||
<text
|
<text
|
||||||
id="acuupress_text"
|
id="acuupress_text"
|
||||||
y="707.69037"
|
y="707.69037"
|
||||||
|
@ -578,149 +579,18 @@
|
||||||
id="path4371"
|
id="path4371"
|
||||||
d="m 281.04875,383.88565 40.34267,0 0,2.80598 -40.34542,-0.0503 z"
|
d="m 281.04875,383.88565 40.34267,0 0,2.80598 -40.34542,-0.0503 z"
|
||||||
style="fill:#cecdce;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.80000001px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
style="fill:#cecdce;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.80000001px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||||
<path
|
<ellipse
|
||||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#cecdce;stroke-width:1.16106236;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="opacity:1;fill:none;fill-opacity:1;stroke:#cecdce;stroke-width:1.16106236;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
id="path4375"
|
id="path4375"
|
||||||
sodipodi:type="arc"
|
cx="273.31589"
|
||||||
sodipodi:cx="273.31589"
|
cy="385.33484"
|
||||||
sodipodi:cy="384.60065"
|
rx="7.6024261"
|
||||||
sodipodi:rx="7.6024261"
|
ry="7.6023316" />
|
||||||
sodipodi:ry="7.6023316"
|
|
||||||
sodipodi:start="1.4591389"
|
|
||||||
sodipodi:end="1.4478433"
|
|
||||||
d="m 274.16299,392.15564 a 7.6024261,7.6023316 0 0 1 -8.39976,-6.68657 7.6024261,7.6023316 0 0 1 6.6629,-8.41851 7.6024261,7.6023316 0 0 1 8.43739,6.63902 7.6024261,7.6023316 0 0 1 -6.61524,8.45601"
|
|
||||||
sodipodi:open="true" />
|
|
||||||
<path
|
|
||||||
style="fill:#11ba50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.80000001px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
|
||||||
d="m 207.87954,395.16357 0.13614,32.54313 2.94623,-3.33148 -0.0205,-29.23092 z"
|
|
||||||
id="Triangle-Left2b"
|
|
||||||
inkscape:connector-curvature="0"
|
|
||||||
sodipodi:nodetypes="ccccc"
|
|
||||||
inkscape:label="#path4379" />
|
|
||||||
<path
|
|
||||||
style="fill:none;fill-rule:evenodd;stroke:#11ba50;stroke-width:2.56;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
|
|
||||||
d="m 197.20632,395.05035 43.92622,0 -43.92622,44.8496 z"
|
|
||||||
id="Triangle-Left2a"
|
|
||||||
inkscape:connector-curvature="0"
|
|
||||||
sodipodi:nodetypes="cccc"
|
|
||||||
inkscape:label="#path4381" />
|
|
||||||
<path
|
|
||||||
sodipodi:nodetypes="ccccc"
|
|
||||||
inkscape:connector-curvature="0"
|
|
||||||
id="Triangle-Left2c"
|
|
||||||
d="m 219.61958,395.42037 0.13614,20.67821 2.94623,-2.11686 -0.0205,-18.57359 z"
|
|
||||||
style="fill:#11ba50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.80000001px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
|
||||||
inkscape:label="#path4383" />
|
|
||||||
<path
|
|
||||||
sodipodi:nodetypes="ccccc"
|
|
||||||
inkscape:connector-curvature="0"
|
|
||||||
id="Triangle-Left1c"
|
|
||||||
d="m 178.32852,395.76914 -0.13614,32.54313 -2.94623,-3.33148 0.0205,-29.23092 z"
|
|
||||||
style="fill:#11ba50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.80000001px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
|
||||||
inkscape:label="#path4385" />
|
|
||||||
<path
|
|
||||||
sodipodi:nodetypes="cccc"
|
|
||||||
inkscape:connector-curvature="0"
|
|
||||||
id="Triangle-Left1a"
|
|
||||||
d="m 189.00174,395.21818 -43.92622,0 43.92622,44.8496 z"
|
|
||||||
style="fill:none;fill-rule:evenodd;stroke:#11ba50;stroke-width:2.55999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
||||||
inkscape:label="#path4387" />
|
|
||||||
<path
|
|
||||||
style="fill:#11ba50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.80000001px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
|
||||||
d="m 166.58848,396.02594 -0.13614,20.67821 -2.94623,-2.11686 0.0205,-18.57359 z"
|
|
||||||
id="Triangle-Left1b"
|
|
||||||
inkscape:connector-curvature="0"
|
|
||||||
sodipodi:nodetypes="ccccc"
|
|
||||||
inkscape:label="#path4389" />
|
|
||||||
<path
|
|
||||||
sodipodi:nodetypes="ccccc"
|
|
||||||
inkscape:connector-curvature="0"
|
|
||||||
id="Triangle-Nose2b"
|
|
||||||
d="m 529.96931,225.40331 0.13614,32.54313 2.94623,-3.33148 -0.0205,-29.23092 z"
|
|
||||||
style="fill:#11ba50;fill-opacity:1;fill-rule:evenodd;stroke:#11ba50;stroke-width:0.80000001px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
|
||||||
inkscape:label="#path4391" />
|
|
||||||
<path
|
|
||||||
sodipodi:nodetypes="cccc"
|
|
||||||
inkscape:connector-curvature="0"
|
|
||||||
id="Triangle-Nose2a"
|
|
||||||
d="m 519.29609,225.29009 43.92622,0 -43.92622,44.8496 z"
|
|
||||||
style="fill:none;fill-rule:evenodd;stroke:#11ba50;stroke-width:2.55999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;fill-opacity:1"
|
|
||||||
inkscape:label="#path4393" />
|
|
||||||
<path
|
|
||||||
style="fill:#11ba50;fill-opacity:1;fill-rule:evenodd;stroke:#11ba50;stroke-width:0.80000001px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
|
||||||
d="m 541.70935,225.66011 0.13614,20.67821 2.94623,-2.11686 -0.0205,-18.57359 z"
|
|
||||||
id="Triangle-Nose2c"
|
|
||||||
inkscape:connector-curvature="0"
|
|
||||||
sodipodi:nodetypes="ccccc"
|
|
||||||
inkscape:label="#path4395" />
|
|
||||||
<path
|
|
||||||
style="fill:#11ba50;fill-opacity:1;fill-rule:evenodd;stroke:#11ba50;stroke-width:0.80000001px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
|
||||||
d="m 500.41829,226.00888 -0.13614,32.54313 -2.94623,-3.33148 0.0205,-29.23092 z"
|
|
||||||
id="Triangle-Nose1c"
|
|
||||||
inkscape:connector-curvature="0"
|
|
||||||
sodipodi:nodetypes="ccccc"
|
|
||||||
inkscape:label="#path4397" />
|
|
||||||
<path
|
|
||||||
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#11ba50;stroke-width:2.55999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
||||||
d="m 511.17157,225.4153 -43.92622,0 43.92622,44.8496 z"
|
|
||||||
id="Triangle-Nose1a"
|
|
||||||
inkscape:connector-curvature="0"
|
|
||||||
sodipodi:nodetypes="cccc"
|
|
||||||
inkscape:label="#path4399" />
|
|
||||||
<path
|
|
||||||
sodipodi:nodetypes="ccccc"
|
|
||||||
inkscape:connector-curvature="0"
|
|
||||||
id="Triangle-Nose1b"
|
|
||||||
d="m 488.67825,226.26568 -0.13614,20.67821 -2.94623,-2.11686 0.0205,-18.57359 z"
|
|
||||||
style="fill:#11ba50;fill-opacity:1;fill-rule:evenodd;stroke:#11ba50;stroke-width:0.80000001px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
|
||||||
inkscape:label="#path4401" />
|
|
||||||
<path
|
|
||||||
style="fill:#11ba50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.80000001px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
|
||||||
d="m 858.12195,395.16357 0.13614,32.54313 2.94623,-3.33148 -0.0205,-29.23092 z"
|
|
||||||
id="Triangle-Right2b"
|
|
||||||
inkscape:connector-curvature="0"
|
|
||||||
sodipodi:nodetypes="ccccc"
|
|
||||||
inkscape:label="#path4403" />
|
|
||||||
<path
|
|
||||||
style="fill:none;fill-rule:evenodd;stroke:#11ba50;stroke-width:2.55999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
||||||
d="m 847.44873,395.05035 43.92622,0 -43.92622,44.8496 z"
|
|
||||||
id="Triangle-Right2a"
|
|
||||||
inkscape:connector-curvature="0"
|
|
||||||
sodipodi:nodetypes="cccc"
|
|
||||||
inkscape:label="#path4405" />
|
|
||||||
<path
|
|
||||||
sodipodi:nodetypes="ccccc"
|
|
||||||
inkscape:connector-curvature="0"
|
|
||||||
id="Triangle-Right2c"
|
|
||||||
d="m 869.86199,395.42037 0.13614,20.67821 2.94623,-2.11686 -0.0205,-18.57359 z"
|
|
||||||
style="fill:#11ba50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.80000001px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
|
||||||
inkscape:label="#path4407" />
|
|
||||||
<path
|
|
||||||
sodipodi:nodetypes="ccccc"
|
|
||||||
inkscape:connector-curvature="0"
|
|
||||||
id="Triangle-Right1c"
|
|
||||||
d="m 828.57093,395.76914 -0.13614,32.54313 -2.94623,-3.33148 0.0205,-29.23092 z"
|
|
||||||
style="fill:#11ba50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.80000001px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
|
||||||
inkscape:label="#path4409" />
|
|
||||||
<path
|
|
||||||
sodipodi:nodetypes="cccc"
|
|
||||||
inkscape:connector-curvature="0"
|
|
||||||
id="Triangle-Right1a"
|
|
||||||
d="m 839.77047,395.1296 -43.92622,0 43.92622,44.8496 z"
|
|
||||||
style="fill:none;fill-rule:evenodd;stroke:#11ba50;stroke-width:2.55999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
||||||
inkscape:label="#path4411" />
|
|
||||||
<path
|
|
||||||
style="fill:#11ba50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.80000001px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
|
||||||
d="m 816.83089,396.02594 -0.13614,20.67821 -2.94623,-2.11686 0.0205,-18.57359 z"
|
|
||||||
id="Triangle-Right1b"
|
|
||||||
inkscape:connector-curvature="0"
|
|
||||||
sodipodi:nodetypes="ccccc"
|
|
||||||
inkscape:label="#path4413" />
|
|
||||||
<path
|
<path
|
||||||
sodipodi:nodetypes="ccccc"
|
sodipodi:nodetypes="ccccc"
|
||||||
inkscape:connector-curvature="0"
|
inkscape:connector-curvature="0"
|
||||||
id="path4415"
|
id="path4415"
|
||||||
d="m 961.77821,384.64351 -50.8584,0 0,2.80598 50.86186,-0.0503 z"
|
d="m 973.35837,383.88601 h -50.8584 v 2.80598 l 50.86186,-0.0503 z"
|
||||||
style="fill:#cecdce;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.80000001px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
style="fill:#cecdce;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.80000001px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||||
<path
|
<path
|
||||||
style="fill:#11ba50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.80000001px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
style="fill:#11ba50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.80000001px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
@ -734,25 +604,27 @@
|
||||||
id="path4419"
|
id="path4419"
|
||||||
inkscape:connector-curvature="0"
|
inkscape:connector-curvature="0"
|
||||||
sodipodi:nodetypes="ccccc" />
|
sodipodi:nodetypes="ccccc" />
|
||||||
<path
|
<ellipse
|
||||||
sodipodi:open="true"
|
|
||||||
d="m -758.79187,392.15564 a 7.6024261,7.6023316 0 0 1 -8.39977,-6.68657 7.6024261,7.6023316 0 0 1 6.6629,-8.41851 7.6024261,7.6023316 0 0 1 8.4374,6.63902 7.6024261,7.6023316 0 0 1 -6.61525,8.45601"
|
|
||||||
sodipodi:end="1.4478433"
|
|
||||||
sodipodi:start="1.4591389"
|
|
||||||
sodipodi:ry="7.6023316"
|
|
||||||
sodipodi:rx="7.6024261"
|
|
||||||
sodipodi:cy="384.60065"
|
|
||||||
sodipodi:cx="-759.63898"
|
|
||||||
sodipodi:type="arc"
|
|
||||||
id="path4421"
|
id="path4421"
|
||||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#cecdce;stroke-width:1.16106236;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="opacity:1;fill:none;fill-opacity:1;stroke:#cecdce;stroke-width:1.16106236;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
transform="scale(-1,1)" />
|
transform="scale(-1,1)"
|
||||||
|
cx="-759.63898"
|
||||||
|
cy="385.33487"
|
||||||
|
rx="7.6024261"
|
||||||
|
ry="7.6023316" />
|
||||||
<path
|
<path
|
||||||
sodipodi:nodetypes="ccccc"
|
sodipodi:nodetypes="ccccc"
|
||||||
inkscape:connector-curvature="0"
|
inkscape:connector-curvature="0"
|
||||||
id="path4423"
|
id="path4423"
|
||||||
d="m 427.84645,213.05298 -34.34462,0 0,2.80598 34.34696,-0.0503 z"
|
d="m 428.24745,213.06901 h -37.28371 v 2.80598 l 37.28625,-0.0503 z"
|
||||||
style="fill:#cecdce;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.80000001px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
style="fill:#cecdce;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.83352798px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
style="fill:#11ba50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.80000001px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
d="m 443.99999,213.06894 h 54.88262 v 2.80598 l -54.88636,-0.0503 z"
|
||||||
|
id="nosegeardoorL"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="ccccc"
|
||||||
|
inkscape:label="#path4437" />
|
||||||
<path
|
<path
|
||||||
transform="scale(-1,1)"
|
transform="scale(-1,1)"
|
||||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#cecdce;stroke-width:1.16106236;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="opacity:1;fill:none;fill-opacity:1;stroke:#cecdce;stroke-width:1.16106236;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
@ -768,36 +640,29 @@
|
||||||
sodipodi:open="true" />
|
sodipodi:open="true" />
|
||||||
<path
|
<path
|
||||||
style="fill:#cecdce;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.80000001px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
style="fill:#cecdce;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.80000001px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
d="m 605.22364,213.14198 37.28382,0 0,2.80598 -37.28636,-0.0503 z"
|
d="m 605.24998,213.06901 h 37.28382 v 2.80598 l -37.28636,-0.0503 z"
|
||||||
id="path4431"
|
id="path4431"
|
||||||
inkscape:connector-curvature="0"
|
inkscape:connector-curvature="0"
|
||||||
sodipodi:nodetypes="ccccc" />
|
sodipodi:nodetypes="ccccc" />
|
||||||
|
<path
|
||||||
|
sodipodi:nodetypes="ccccc"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="nosegeardoorR"
|
||||||
|
d="m 535.20968,213.06901 h 54.88262 v 2.80598 l -54.88636,-0.0503 z"
|
||||||
|
style="fill:#11ba50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.80000001px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
inkscape:label="#path4435" />
|
||||||
<path
|
<path
|
||||||
sodipodi:open="true"
|
sodipodi:open="true"
|
||||||
d="m 598.7926,222.93892 a 7.6024261,7.6023316 0 0 1 -8.39977,-6.68657 7.6024261,7.6023316 0 0 1 6.66291,-8.41851 7.6024261,7.6023316 0 0 1 8.43739,6.63902 7.6024261,7.6023316 0 0 1 -6.61525,8.45601"
|
d="m 598.7926,222.39563 a 7.6024261,7.6023316 0 0 1 -8.39977,-6.68657 7.6024261,7.6023316 0 0 1 6.66291,-8.41851 7.6024261,7.6023316 0 0 1 8.43739,6.63902 7.6024261,7.6023316 0 0 1 -6.61525,8.45601"
|
||||||
sodipodi:end="1.4478433"
|
sodipodi:end="1.4478433"
|
||||||
sodipodi:start="1.4591389"
|
sodipodi:start="1.4591389"
|
||||||
sodipodi:ry="7.6023316"
|
sodipodi:ry="7.6023316"
|
||||||
sodipodi:rx="7.6024261"
|
sodipodi:rx="7.6024261"
|
||||||
sodipodi:cy="215.38393"
|
sodipodi:cy="214.84064"
|
||||||
sodipodi:cx="597.9455"
|
sodipodi:cx="597.9455"
|
||||||
sodipodi:type="arc"
|
sodipodi:type="arc"
|
||||||
id="path4433"
|
id="path4433"
|
||||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#cecdce;stroke-width:1.16106236;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
style="opacity:1;fill:none;fill-opacity:1;stroke:#cecdce;stroke-width:1.16106236;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
<path
|
|
||||||
sodipodi:nodetypes="ccccc"
|
|
||||||
inkscape:connector-curvature="0"
|
|
||||||
id="nosegeardoorR"
|
|
||||||
d="m 535.20968,213.53256 54.88262,0 0,2.80598 -54.88636,-0.0503 z"
|
|
||||||
style="fill:#11ba50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.80000001px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
|
||||||
inkscape:label="#path4435" />
|
|
||||||
<path
|
|
||||||
style="fill:#11ba50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.80000001px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
|
||||||
d="m 444.07939,213.06894 54.88262,0 0,2.80598 -54.88636,-0.0503 z"
|
|
||||||
id="nosegeardoorL"
|
|
||||||
inkscape:connector-curvature="0"
|
|
||||||
sodipodi:nodetypes="ccccc"
|
|
||||||
inkscape:label="#path4437" />
|
|
||||||
<path
|
<path
|
||||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#11ba50;stroke-width:2.60787535;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
style="opacity:1;fill:none;fill-opacity:1;stroke:#11ba50;stroke-width:2.60787535;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
d="m 474.92632,318.99999 c -9.60617,5.62651 -23.82998,8.88082 -38.54106,8.81793 -14.71109,-0.0629 -28.26087,-3.43594 -36.7147,-9.13967"
|
d="m 474.92632,318.99999 c -9.60617,5.62651 -23.82998,8.88082 -38.54106,8.81793 -14.71109,-0.0629 -28.26087,-3.43594 -36.7147,-9.13967"
|
||||||
|
@ -1110,10 +975,10 @@
|
||||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:43.1136055px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans'">5</tspan></text>
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:43.1136055px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans'">5</tspan></text>
|
||||||
<rect
|
<rect
|
||||||
style="fill:#898989;fill-opacity:1;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none"
|
style="fill:#898989;fill-opacity:1;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none"
|
||||||
id="altnbrkyellow-rect"
|
id="altnbrk-rect"
|
||||||
width="27.575558"
|
width="27.575558"
|
||||||
height="36.044067"
|
height="36.044067"
|
||||||
x="393.88254"
|
x="393.24823"
|
||||||
y="638.59625"
|
y="638.59625"
|
||||||
inkscape:label="#rect4370-3-6-2-8-9" />
|
inkscape:label="#rect4370-3-6-2-8-9" />
|
||||||
<text
|
<text
|
||||||
|
@ -1127,11 +992,11 @@
|
||||||
sodipodi:role="line"
|
sodipodi:role="line"
|
||||||
id="tspan4357-0-1"
|
id="tspan4357-0-1"
|
||||||
x="429.4884"
|
x="429.4884"
|
||||||
y="620.99146"
|
y="624.30054"
|
||||||
style="font-size:34.50801086px;line-height:1.25">Y</tspan></text>
|
style="font-size:34.50801086px;line-height:1.25" /></text>
|
||||||
<rect
|
<rect
|
||||||
style="fill:#898989;fill-opacity:1;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none"
|
style="fill:#898989;fill-opacity:1;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none"
|
||||||
id="normbrkgreen-rect"
|
id="normbrk-rect"
|
||||||
width="27.575558"
|
width="27.575558"
|
||||||
height="36.044067"
|
height="36.044067"
|
||||||
x="393.24786"
|
x="393.24786"
|
||||||
|
@ -1139,24 +1004,24 @@
|
||||||
inkscape:label="#rect4370-3-6-2-8-9-7" />
|
inkscape:label="#rect4370-3-6-2-8-9-7" />
|
||||||
<text
|
<text
|
||||||
xml:space="preserve"
|
xml:space="preserve"
|
||||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#11ba50;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#11ba50;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
|
||||||
x="426.92853"
|
x="425.9541"
|
||||||
y="575.56732"
|
y="575.56732"
|
||||||
id="normbrkgreen"
|
id="normbrk"
|
||||||
transform="scale(0.92732085,1.0783754)"
|
transform="scale(0.92732085,1.0783754)"
|
||||||
inkscape:label="#text4355-7"><tspan
|
inkscape:label="#text4355-7"><tspan
|
||||||
sodipodi:role="line"
|
sodipodi:role="line"
|
||||||
id="tspan4357-0-1-1"
|
id="tspan4357-0-1-1"
|
||||||
x="426.92853"
|
x="425.9541"
|
||||||
y="575.56732"
|
y="575.56732"
|
||||||
style="font-size:34.50801086px;line-height:1.25">G</tspan><tspan
|
style="font-size:34.50801086px;line-height:1.25;fill:#11ba50;fill-opacity:1;">G</tspan><tspan
|
||||||
sodipodi:role="line"
|
sodipodi:role="line"
|
||||||
x="426.92853"
|
x="425.9541"
|
||||||
y="618.70233"
|
y="590.92816"
|
||||||
id="tspan4332"
|
id="tspan4332"
|
||||||
style="font-size:34.50801086px;line-height:1.25" /></text>
|
style="font-size:34.50801086px;line-height:1.25;fill:#11ba50;fill-opacity:1;" /></text>
|
||||||
<rect
|
<rect
|
||||||
y="524.97302"
|
y="525.2644"
|
||||||
x="632.14337"
|
x="632.14337"
|
||||||
height="36.044067"
|
height="36.044067"
|
||||||
width="27.575558"
|
width="27.575558"
|
||||||
|
@ -1173,19 +1038,19 @@
|
||||||
inkscape:label="#rect4336" />
|
inkscape:label="#rect4336" />
|
||||||
<text
|
<text
|
||||||
xml:space="preserve"
|
xml:space="preserve"
|
||||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#11ba50;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#bb6100;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
|
||||||
x="634.99792"
|
x="636.59528"
|
||||||
y="554.21948"
|
y="554.79926"
|
||||||
id="BSCU2"
|
id="BSCU2"
|
||||||
inkscape:label="#text4344"><tspan
|
inkscape:label="#text4344"><tspan
|
||||||
sodipodi:role="line"
|
sodipodi:role="line"
|
||||||
id="tspan192"
|
id="tspan192"
|
||||||
x="634.99792"
|
x="636.59528"
|
||||||
y="554.21948"
|
y="554.79926"
|
||||||
style="font-size:32px;line-height:1.25">2</tspan></text>
|
style="font-size:32px;line-height:1.25;fill:#bb6100;fill-opacity:1;">2</tspan></text>
|
||||||
<text
|
<text
|
||||||
xml:space="preserve"
|
xml:space="preserve"
|
||||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#11ba50;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#bb6100;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
|
||||||
x="602.89856"
|
x="602.89856"
|
||||||
y="554.79913"
|
y="554.79913"
|
||||||
id="BSCU1"
|
id="BSCU1"
|
||||||
|
@ -1194,28 +1059,28 @@
|
||||||
id="tspan195"
|
id="tspan195"
|
||||||
x="602.89856"
|
x="602.89856"
|
||||||
y="554.79913"
|
y="554.79913"
|
||||||
style="font-size:32px;line-height:1.25">1</tspan></text>
|
style="font-size:32px;line-height:1.25;fill:#bb6100;fill-opacity:1;">1</tspan></text>
|
||||||
<rect
|
<rect
|
||||||
y="336.88196"
|
y="336.88196"
|
||||||
x="364.16824"
|
x="364.16824"
|
||||||
height="36.044067"
|
height="36.044067"
|
||||||
width="27.575558"
|
width="27.575558"
|
||||||
id="NWSyellowrect"
|
id="NWSrect"
|
||||||
style="fill:#898989;fill-opacity:1;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none"
|
style="fill:#898989;fill-opacity:1;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none"
|
||||||
inkscape:label="#rect4352" />
|
inkscape:label="#rect4352" />
|
||||||
<text
|
<text
|
||||||
inkscape:label="#text4355-7"
|
inkscape:label="#text4355-7"
|
||||||
transform="scale(0.92732085,1.0783754)"
|
transform="scale(0.92732085,1.0783754)"
|
||||||
id="NWSyellow"
|
id="NWS"
|
||||||
y="341.20551"
|
y="341.20551"
|
||||||
x="397.44525"
|
x="397.44525"
|
||||||
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#11ba50;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#bb6100;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
|
||||||
xml:space="preserve"><tspan
|
xml:space="preserve"><tspan
|
||||||
y="341.20551"
|
y="341.20551"
|
||||||
x="397.44525"
|
x="397.44525"
|
||||||
id="tspan4356"
|
id="tspan4356"
|
||||||
sodipodi:role="line"
|
sodipodi:role="line"
|
||||||
style="font-size:34.50801086px;line-height:1.25">Y</tspan></text>
|
style="font-size:34.50801086px;line-height:1.25;fill:#bb6100;fill-opacity:1;">Y</tspan></text>
|
||||||
<path
|
<path
|
||||||
style="fill:#11ba50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.80000001px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
style="fill:#11ba50;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.80000001px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
d="m 406.87622,675.56692 0.0702,27.55948 9.82741,0.0703 0.0285,6.18467 9.45224,-8.4158 -9.41055,-7.68184 -0.0702,6.04621 -6.94937,-0.0703 -0.49137,-23.62242 z"
|
d="m 406.87622,675.56692 0.0702,27.55948 9.82741,0.0703 0.0285,6.18467 9.45224,-8.4158 -9.41055,-7.68184 -0.0702,6.04621 -6.94937,-0.0703 -0.49137,-23.62242 z"
|
||||||
|
@ -1225,7 +1090,7 @@
|
||||||
inkscape:label="#path4358" />
|
inkscape:label="#path4358" />
|
||||||
<text
|
<text
|
||||||
xml:space="preserve"
|
xml:space="preserve"
|
||||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:12px;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#cecdce;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#cecdce;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
x="1123.6205"
|
x="1123.6205"
|
||||||
y="555.97632"
|
y="555.97632"
|
||||||
id="releaseR3-7"
|
id="releaseR3-7"
|
||||||
|
@ -1236,4 +1101,59 @@
|
||||||
x="1123.6205"
|
x="1123.6205"
|
||||||
y="555.97632"
|
y="555.97632"
|
||||||
style="font-size:21.63888741px;line-height:1.25;stroke-width:1px">|||</tspan></text>
|
style="font-size:21.63888741px;line-height:1.25;stroke-width:1px">|||</tspan></text>
|
||||||
|
<text
|
||||||
|
inkscape:label="#text4355-7"
|
||||||
|
transform="scale(0.92732085,1.0783754)"
|
||||||
|
id="altnbrk"
|
||||||
|
y="620.81592"
|
||||||
|
x="427.90295"
|
||||||
|
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#11ba50;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
|
||||||
|
xml:space="preserve"><tspan
|
||||||
|
style="font-size:34.50801086px;line-height:1.25;fill:#11ba50;fill-opacity:1;"
|
||||||
|
id="tspan1000"
|
||||||
|
y="620.81592"
|
||||||
|
x="427.90295"
|
||||||
|
sodipodi:role="line">Y</tspan></text>
|
||||||
|
<path
|
||||||
|
id="Triangle-Nose1"
|
||||||
|
style="fill:none;fill-opacity:1;stroke:#11ba50;stroke-width:3;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 498.81988,225.62499 v 30.375 m -11.72934,-30.42187 0,19.17187 m 24.08103,-19.33469 h -43.92622 l 19.8468,20.264 c 8.02647,8.1952 16.05295,16.3904 24.07942,24.5856 z"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="ccccccccc"
|
||||||
|
inkscape:label="#path1067" />
|
||||||
|
<path
|
||||||
|
inkscape:label="#path1067"
|
||||||
|
sodipodi:nodetypes="ccccccccc"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m 531.86767,225.62499 v 30.375 m 11.72934,-30.42187 v 19.17187 M 519.51598,225.4153 h 43.92622 l -19.8468,20.264 c -8.02647,8.1952 -16.05295,16.3904 -24.07942,24.5856 z"
|
||||||
|
style="fill:none;fill-opacity:1;stroke:#11ba50;stroke-width:3;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
id="Triangle-Nose2" />
|
||||||
|
<path
|
||||||
|
inkscape:label="#path1067"
|
||||||
|
sodipodi:nodetypes="ccccccccc"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m 177.17374,394.88856 v 30.375 M 165.4444,394.84169 v 19.17187 m 24.08103,-19.33469 h -43.92622 l 19.8468,20.264 c 8.02647,8.1952 16.05295,16.3904 24.07942,24.5856 z"
|
||||||
|
style="fill:none;fill-opacity:1;stroke:#11ba50;stroke-width:3;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
id="Triangle-Left1" />
|
||||||
|
<path
|
||||||
|
id="Triangle-Left2"
|
||||||
|
style="fill:none;fill-opacity:1;stroke:#11ba50;stroke-width:3;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 209.77794,394.88856 v 30.375 m 11.72934,-30.42187 v 19.17187 m -24.08104,-19.33469 h 43.92623 l -19.8468,20.264 c -8.02647,8.1952 -16.05295,16.3904 -24.07943,24.5856 z"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="ccccccccc"
|
||||||
|
inkscape:label="#path1067" />
|
||||||
|
<path
|
||||||
|
id="Triangle-Right1"
|
||||||
|
style="fill:none;fill-opacity:1;stroke:#11ba50;stroke-width:3;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 827.94197,394.88856 v 30.375 m -11.72934,-30.42187 v 19.17187 m 24.08103,-19.33469 h -43.92622 l 19.8468,20.264 c 8.02647,8.1952 16.05295,16.3904 24.07942,24.5856 z"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="ccccccccc"
|
||||||
|
inkscape:label="#path1067" />
|
||||||
|
<path
|
||||||
|
inkscape:label="#path1067"
|
||||||
|
sodipodi:nodetypes="ccccccccc"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m 860.02042,394.88856 v 30.375 m 11.72934,-30.42187 v 19.17187 m -24.08104,-19.33469 h 43.92623 l -19.8468,20.264 c -8.02647,8.1952 -16.05295,16.3904 -24.07943,24.5856 z"
|
||||||
|
style="fill:none;fill-opacity:1;stroke:#11ba50;stroke-width:3;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
id="Triangle-Right2" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|
Before Width: | Height: | Size: 64 KiB After Width: | Height: | Size: 60 KiB |
|
@ -1 +1 @@
|
||||||
2133
|
2134
|
Reference in a new issue