From fe02f4984e7ff92c908c7590d4fa1728bbf0e014 Mon Sep 17 00:00:00 2001 From: hayden2000 Date: Sun, 23 Feb 2020 11:10:32 -0500 Subject: [PATCH] Add max flap speed indicator --- Models/Instruments/PFD/PFD.nas | 110 +- Models/Instruments/PFD/res/pfd.svg | 8007 ++++++++++++++-------------- 2 files changed, 4120 insertions(+), 3997 deletions(-) diff --git a/Models/Instruments/PFD/PFD.nas b/Models/Instruments/PFD/PFD.nas index 843e542c..02fc6a7e 100644 --- a/Models/Instruments/PFD/PFD.nas +++ b/Models/Instruments/PFD/PFD.nas @@ -219,7 +219,7 @@ var canvas_PFD_base = { "AI_bank_lim","AI_bank_lim_X","AI_pitch_lim","AI_pitch_lim_X","AI_slipskid","AI_horizon","AI_horizon_ground","AI_horizon_sky","AI_stick","AI_stick_pos","AI_heading","AI_agl_g","AI_agl","AI_error","AI_group","FD_roll","FD_pitch","ALT_box_flash", "ALT_scale","ALT_target", "ALT_target_digit","ALT_one","ALT_two","ALT_three","ALT_four","ALT_five","ALT_digits","ALT_tens","ALT_digit_UP","ALT_digit_DN","ALT_error","ALT_group","ALT_group2","ALT_frame","VS_pointer","VS_box","VS_digit","VS_error","VS_group","QNH","QNH_setting", "QNH_std","QNH_box","LOC_pointer","LOC_scale","GS_scale","GS_pointer","CRS_pointer","HDG_target","HDG_scale","HDG_one","HDG_two","HDG_three","HDG_four","HDG_five","HDG_six","HDG_seven","HDG_digit_L","HDG_digit_R","HDG_error","HDG_group","HDG_frame", - "TRK_pointer","machError","ilsError","ils_code","ils_freq","dme_dist","dme_dist_legend","ILS_HDG_R","ILS_HDG_L","ILS_right","ILS_left","outerMarker","middleMarker","innerMarker","v1_group","v1_text","vr_speed","F_target","S_target"]; + "TRK_pointer","machError","ilsError","ils_code","ils_freq","dme_dist","dme_dist_legend","ILS_HDG_R","ILS_HDG_L","ILS_right","ILS_left","outerMarker","middleMarker","innerMarker","v1_group","v1_text","vr_speed","F_target","S_target","flap_max"]; }, updateDu1: func() { var elapsedtime_act = elapsedtime.getValue(); @@ -924,11 +924,13 @@ var canvas_PFD_1 = { V2trgt: 0, Strgt: 0, Ftrgt: 0, + flaptrgt: 0, SPDv1trgtdiff: 0, SPDvrtrgtdiff: 0, SPDv2trgtdiff: 0, SPDstrgtdiff: 0, SPDftrgtdiff: 0, + SPDflaptrgtdiff: 0, FMGC_max: 0, new: func(canvas_group, file) { var m = {parents: [canvas_PFD_1, canvas_PFD_base]}; @@ -1253,6 +1255,18 @@ var canvas_PFD_1 = { } else { me["S_target"].hide(); } + + tgt_flap = 215; + me.flaptrgt = tgt_flap - 30 - me.ASI; + + me.SPDflaptrgtdiff = tgt_flap - ind_spd; + + if (me.SPDflaptrgtdiff >= -42 and me.SPDflaptrgtdiff <= 42) { + me["flap_max"].show(); + me["flap_max"].setTranslation(0, me.flaptrgt * -6.6); + } else { + me["flap_max"].hide(); + } } else if (flap_config.getValue() == '2') { me["S_target"].hide(); @@ -1274,6 +1288,18 @@ var canvas_PFD_1 = { } else { me["F_target"].hide(); } + + tgt_flap = 200; + me.flaptrgt = tgt_flap - 30 - me.ASI; + + me.SPDflaptrgtdiff = tgt_flap - ind_spd; + + if (me.SPDflaptrgtdiff >= -42 and me.SPDflaptrgtdiff <= 42) { + me["flap_max"].show(); + me["flap_max"].setTranslation(0, me.flaptrgt * -6.6); + } else { + me["flap_max"].hide(); + } } else if (flap_config.getValue() == '3') { me["S_target"].hide(); @@ -1296,9 +1322,37 @@ var canvas_PFD_1 = { } else { me["F_target"].hide(); } + + tgt_flap = 185; + me.flaptrgt = tgt_flap - 30 - me.ASI; + + me.SPDflaptrgtdiff = tgt_flap - ind_spd; + + if (me.SPDflaptrgtdiff >= -42 and me.SPDflaptrgtdiff <= 42) { + me["flap_max"].show(); + me["flap_max"].setTranslation(0, me.flaptrgt * -6.6); + } else { + me["flap_max"].hide(); + } + } else if (flap_config.getValue() == '4') { + me["S_target"].hide(); + me["F_target"].hide(); + + tgt_flap = 177; + me.flaptrgt = tgt_flap - 30 - me.ASI; + + me.SPDflaptrgtdiff = tgt_flap - ind_spd; + + if (me.SPDflaptrgtdiff >= -42 and me.SPDflaptrgtdiff <= 42) { + me["flap_max"].show(); + me["flap_max"].setTranslation(0, me.flaptrgt * -6.6); + } else { + me["flap_max"].hide(); + } } else { me["S_target"].hide(); me["F_target"].hide(); + me["flap_max"].hide(); } me.ASItrend = dmc.DMController.DMCs[0].outputs[6].getValue() - me.ASI; @@ -1453,11 +1507,13 @@ var canvas_PFD_2 = { V2trgt: 0, Strgt: 0, Ftrgt: 0, + flaptrgt: 0, SPDv1trgtdiff: 0, SPDvrtrgtdiff: 0, SPDv2trgtdiff: 0, SPDstrgtdiff: 0, SPDftrgtdiff: 0, + SPDflaptrgtdiff: 0, FMGC_max: 0, new: func(canvas_group, file) { var m = {parents: [canvas_PFD_2, canvas_PFD_base]}; @@ -1782,6 +1838,18 @@ var canvas_PFD_2 = { } else { me["S_target"].hide(); } + + tgt_flap = 215; + me.flaptrgt = tgt_flap - 30 - me.ASI; + + me.SPDflaptrgtdiff = tgt_flap - ind_spd; + + if (me.SPDflaptrgtdiff >= -42 and me.SPDflaptrgtdiff <= 42) { + me["flap_max"].show(); + me["flap_max"].setTranslation(0, me.flaptrgt * -6.6); + } else { + me["flap_max"].hide(); + } } else if (flap_config.getValue() == '2') { me["S_target"].hide(); @@ -1803,6 +1871,18 @@ var canvas_PFD_2 = { } else { me["F_target"].hide(); } + + tgt_flap = 200; + me.flaptrgt = tgt_flap - 30 - me.ASI; + + me.SPDflaptrgtdiff = tgt_flap - ind_spd; + + if (me.SPDflaptrgtdiff >= -42 and me.SPDflaptrgtdiff <= 42) { + me["flap_max"].show(); + me["flap_max"].setTranslation(0, me.flaptrgt * -6.6); + } else { + me["flap_max"].hide(); + } } else if (flap_config.getValue() == '3') { me["S_target"].hide(); @@ -1825,9 +1905,37 @@ var canvas_PFD_2 = { } else { me["F_target"].hide(); } + + tgt_flap = 185; + me.flaptrgt = tgt_flap - 30 - me.ASI; + + me.SPDflaptrgtdiff = tgt_flap - ind_spd; + + if (me.SPDflaptrgtdiff >= -42 and me.SPDflaptrgtdiff <= 42) { + me["flap_max"].show(); + me["flap_max"].setTranslation(0, me.flaptrgt * -6.6); + } else { + me["flap_max"].hide(); + } + } else if (flap_config.getValue() == '4') { + me["S_target"].hide(); + me["F_target"].hide(); + + tgt_flap = 177; + me.flaptrgt = tgt_flap - 30 - me.ASI; + + me.SPDflaptrgtdiff = tgt_flap - ind_spd; + + if (me.SPDflaptrgtdiff >= -42 and me.SPDflaptrgtdiff <= 42) { + me["flap_max"].show(); + me["flap_max"].setTranslation(0, me.flaptrgt * -6.6); + } else { + me["flap_max"].hide(); + } } else { me["S_target"].hide(); me["F_target"].hide(); + me["flap_max"].hide(); } me.ASItrend = dmc.DMController.DMCs[1].outputs[6].getValue() - me.ASI; diff --git a/Models/Instruments/PFD/res/pfd.svg b/Models/Instruments/PFD/res/pfd.svg index 273b7de3..362dffbf 100644 --- a/Models/Instruments/PFD/res/pfd.svg +++ b/Models/Instruments/PFD/res/pfd.svg @@ -7,13 +7,13 @@ xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="1024pt" - height="1024pt" - viewBox="0 0 1024 1024" - version="1.1" - id="svg2" + sodipodi:docname="pfd.svg" inkscape:version="1.0beta2 (2b71d25, 2019-12-03)" - sodipodi:docname="pfd.svg"> + id="svg2" + version="1.1" + viewBox="0 0 1024 1024" + height="1024pt" + width="1024pt"> @@ -29,58 +29,50 @@ + fit-margin-right="0" + fit-margin-left="0" + fit-margin-top="0" + units="pt" + inkscape:snap-global="false" + showguides="true" + inkscape:current-layer="svg2" + inkscape:window-maximized="0" + inkscape:window-y="0" + inkscape:window-x="0" + inkscape:cy="674.51722" + inkscape:cx="154.88166" + inkscape:zoom="17.462115" + showgrid="true" + id="namedview371" + inkscape:window-height="1080" + inkscape:window-width="1920" + inkscape:pageshadow="2" + inkscape:pageopacity="1" + guidetolerance="10" + gridtolerance="10" + objecttolerance="20" + borderopacity="1" + bordercolor="#666666" + pagecolor="#000000"> + id="grid5153" + type="xygrid" /> - + + inkscape:label="#g4891" + id="AI_group"> + inkscape:label="#g5497"> + inkscape:label="#g5492" + id="AI_background"> + + - - + x="-195.39726" + height="1102.3193" + width="1287.3096" + id="AI_sky" + style="opacity:1;fill:#368acd;fill-opacity:1;stroke:none;stroke-width:2.58921981;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + inkscape:label="#g5341" + id="AI_scale"> + id="AI_sky_scale" + inkscape:label="#g4851"> + id="path4684" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + d="m 433.99987,521.5684 28.50952,0" + style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:3.20000005;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> - + + id="path5071" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + d="m 433.99987,462.4348 28.50952,0" + style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:3.20000005;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> + id="path5075" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + d="m 393.624,373.7344 109.26112,0" + style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:3.20000005;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> + d="m 420.6008,314.60083 55.30952,0" + style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:3.20000005;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> + id="path5119" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + d="m 433.99987,285.034 28.50952,0" + style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:3.20000005;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> - + + id="path5133" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + d="m 433.99987,225.9004 28.50952,0" + style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:3.20000005;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> + id="path5137" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + d="m 393.624,137.2 109.26112,0" + style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:3.20000005;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> + d="m 420.6008,78.066427 55.30952,0" + style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:3.20000005;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> + id="path5151" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + d="m 433.99987,48.499597 28.50952,0" + style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:3.20000005;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> - + + id="path5165" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + d="m 433.99987,-10.634 28.50952,0" + style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:3.20000005;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> + id="path5169" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + d="m 393.624,-99.334403 109.26112,0" + style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:3.20000005;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> + d="m 420.6008,-158.46797 55.30952,0" + style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:3.20000005;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> + id="path5183" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + d="m 433.99987,-188.0348 28.50952,0" + style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:3.20000005;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> - + + id="path5197" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + d="m 433.99987,-247.1684 28.50952,0" + style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:3.20000005;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> + id="path5201" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + d="m 393.624,-335.8688 109.26112,0" + style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:3.20000005;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> + d="m 420.6008,-395.00237 55.30952,0" + style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:3.20000005;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> + id="path5215" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + d="m 433.99987,-424.5692 28.50952,0" + style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:3.20000005;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> - + + id="path4505" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + id="AI_ground_scale" + inkscape:label="#g4813"> + d="m 433.99987,639.8352 28.50952,0" + style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:3.20000005;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> + d="m 420.6008,669.402 55.30952,0" + style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:3.20000005;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> + id="path4509" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + d="m 393.624,728.5356 109.26112,0" + style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:3.20000005;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> + d="m 433.99987,758.1028 28.50952,0" + style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:3.20000005;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> - + - + + id="path4527" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + d="m 433.99987,876.37 28.50952,0" + style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:3.20000005;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> + d="m 420.6008,905.9368 55.30952,0" + style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:3.20000005;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> + id="path4533" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + d="m 393.624,965.0704 109.26112,0" + style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:3.20000005;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> + d="m 433.99987,994.63724 28.50952,0" + style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:3.20000005;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> + d="m 420.6008,1024.204 55.30952,0" + style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:3.20000005;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> + id="path4569" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + d="m 393.624,1083.3376 109.26112,0" + style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:3.20000005;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> - + + id="path4575" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + d="m 433.99987,1172.038 28.50952,0" + style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:3.20000005;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> + id="path4579" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + d="m 433.99987,1231.1716 28.50952,0" + style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:3.20000005;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> + d="m 420.6008,1260.7384 55.30952,0" + style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:3.20000005;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> + id="path4601" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + d="m 393.624,1319.872 109.26112,0" + style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:3.20000005;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> - + + id="path4607" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + d="m 433.99987,1408.5724 28.50952,0" + style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:3.20000005;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> + id="path4611" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + d="m 433.99987,1467.706 28.50952,0" + style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:3.20000005;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> + d="m 420.6008,1497.2728 55.30952,0" + style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:3.20000005;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> + id="path4633" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> - - + + + id="AI_scale_num" + inkscape:label="#g4737"> - 10 + inkscape:label="#g4699" + id="AI_sky_num"> 10 - 20 10 + 20 - 30 20 + 30 - 40 30 + 40 - 50 40 + 50 - 60 50 + 60 - 70 60 + 70 - 80 70 + 80 - 90 80 + 90 + 90 - 10 + inkscape:label="#g4661" + id="AI_ground_num"> 10 - 20 10 + 20 - 30 20 + 30 - 40 30 + 40 - 50 40 + 50 - 60 50 + 60 - 70 60 + 70 - 80 70 + 80 - 90 80 + 90 + 90 + id="AI_pitch_lim"> + d="m 370.5312,154.3476 21.6616,0" + style="fill:none;fill-opacity:1;stroke:#0dc04b;stroke-width:3.19995403;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + id="g4951" + transform="translate(133.78495,0)"> + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + d="m 370.53103,162.42242 21.66136,0" + style="fill:none;fill-opacity:1;stroke:#0dc04b;stroke-width:3.19995403;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> + id="g4964" + transform="matrix(0.9999956,0,0,0.9999865,26.97857,532.2047)"> - - - - + + + + - X + id="AI_pitch_lim_X"> X - X X + X + X + inkscape:label="#g4918"> - - - - - - - - - - - - - + + + + + + + + + + + + + - + + id="AI_bankindex" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccc" + inkscape:label="#rect902" /> + height="12.775722" + width="12.257594" + id="rect4756" + style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.73024487;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + - + x="509.36719" + height="263.53848" + width="7.5999999" + id="FD_pitch" + style="fill:#0dc04b;fill-opacity:1;stroke:none;stroke-width:2.87749815;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + transform="matrix(0,1,-1,0,0,0)" /> + transform="translate(-0.38165298,0)"> + d="m 452.50015,509.31081 29.04648,0" + style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:3.19995403;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + transform="matrix(-1,0,0,1,897.27706,0)" + id="g4806"> + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + d="m 452.49998,480.26394 0,29.04648" + style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:3.19995403;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> + transform="matrix(1,0,0,-1,0,1026.344)" + id="g4812"> - - - - + + + + + width="15.997281" + height="16.491779" + x="440.25876" + y="504.91953" + inkscape:label="#rect4741" /> - - - - - + id="g4844" + transform="matrix(1.0666667,0,0,1.066636,4.919636,-0.50381959)"> - + + + + + + + id="path894" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + inkscape:transform-center-y="-246.1722"> - + + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" + id="AI_slipskid" + d="m 418.32961,292.18309 59.8472,-3e-5 -8.6432,-14.52797 -42.5608,0 z" + style="fill:none;fill-opacity:1;stroke:#c9cc15;stroke-width:3.99994254;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> + - + d="m 288.584,252.95092 13.8416,-7.96852" + style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:3.19995403;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> - + + id="g4374" + transform="matrix(-1,0,0,1,896.78566,0)"> + - + id="path4380" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + transform="translate(0,0.59999999)"> - + transform="translate(0,19.596045)" + id="g4545"> + - + transform="matrix(-1,0,0,1,896.51521,20.196045)" + id="g4876"> + + id="path4880" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + inkscape:label="#g4886" + id="AI_bank_lim_X"> X + X - X + id="tspan4884" + sodipodi:role="line">X + id="g3954" + transform="matrix(-1,0,0,1,896.72324,0)"> + - + d="m 354.9152,234.0368 -14.5632,5.4816" + style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:3.19995403;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> + id="g3968" + transform="matrix(0.98404072,0.17794355,-0.17794355,0.98404072,97.433196,-71.336811)"> - + + transform="matrix(-0.98404072,0.17794355,0.17794355,0.98404072,799.64735,-71.336811)" + id="g3978"> + d="m 340.35189,239.5184 5.62182,14.20878" + style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:3.19995403;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> + id="path3984" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + d="m 354.9152,234.0368 -14.5632,5.4816" + style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:3.19995403;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> + inkscape:label="#g4612" + transform="translate(0,-1.4)"> 0000 + x="511.25748" + y="680.72845" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:45px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:center;text-anchor:middle;fill:#0dc04b;fill-opacity:1;stroke-width:0.657577">0000 + transform="translate(2.8403413,1.952603)"> + transform="translate(0.97071068,0)" + id="g4630"> - - - - - - - - + id="g4634" + transform="matrix(-1,0,0,1,894.37964,0)"> + + + + + + + + - + - - - - - - - - - - + id="rect4416" + width="469.54089" + height="64.058205" + x="213.5808" + y="945.01337" /> - - + inkscape:label="#g4848" + id="HDG_frame"> + + + + + + + + + + + + - 1 + id="g5112" + transform="matrix(1.0666667,0,0,1.066636,0.28284271,-0.50381959)"> 2 + y="569.32635" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:29.7717px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';fill:#cecdce;fill-opacity:1;stroke-width:0.657577">1 6 - - - - - - - - - - - 6 - 2 1 + id="tspan5102" + x="1019.0017" + y="687.27924" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:29.7717px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';fill:#cecdce;fill-opacity:1;stroke-width:0.657577">6 + id="g5092" + transform="matrix(1.0666667,0,0,-1.066636,0.28284271,1026.1924)"> + + 6 + 2 + 1 + + + + + + + + + + - + id="VS_pointer" + width="6.5950012" + height="361.44022" + x="509.69724" + y="-1060.3188" + inkscape:label="#rect4954" + inkscape:transform-center-x="170.07916" /> + transform="translate(0,65.936427)"> + height="45.6008" + width="45.6008" + id="rect4626" + style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.4000001;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> 00 + x="1147.7107" + y="405.05588" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:38px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:center;text-anchor:middle;fill:#0dc04b;fill-opacity:1;stroke-width:0.657577">00 - + + id="ALT_scale"> + id="path4911" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> 000 + x="1604.5295" + id="tspan4915" + sodipodi:role="line">000 + d="m 1479.2996,1007.4057 9.3792,-7.97457 -9.3788,-7.9742" + style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:3.20000005;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> + d="m 1579.3052,512.65602 -11.3041,0" + style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:3.19995403;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> 000 + x="1604.5295" + y="501.10501" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:42px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:center;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke-width:0.75">000 + id="path4943" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccc" /> + d="m 1579.3052,950.77126 -11.3041,0" + style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:3.19995403;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> + id="path4947" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + d="m 1579.3052,853.43414 -11.3041,0" + style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:3.19995403;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> + id="path4951" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + d="m 1579.3052,756.09702 -11.3041,0" + style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:3.19995403;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> + id="path4955" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + d="m 1579.3052,658.7599 -11.3041,0" + style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:3.19995403;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> + id="path4959" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + d="m 1579.3052,561.42278 -11.3041,0" + style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:3.19995403;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> - 000 - - - - - - - - - - - 000 - 000 + + + + + + + + + + 000 + + 000 + - TOGA + x="59.092628" + height="84.381813" + width="102.47213" + id="FMA_man_box" + style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:2.39996576;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> MAN - + y="74.429817" + x="125.31013" + id="tspan4307" + sodipodi:role="line">TOGA MAN PITCH TRIM ONLY + style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.657577" + x="125.84993" + y="33.759209" + id="FMA_man" + transform="scale(0.87678236,1.1405339)">MAN ALT - G/S - CLB + id="tspan4614" + x="505.48523" + y="115.0584" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.9995px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:center;text-anchor:middle;fill:#ff0000;fill-opacity:1;stroke-width:0.657577">MAN PITCH TRIM ONLY + LOC + y="34.986706" + x="370.20218" + id="tspan4244" + sodipodi:role="line">ALT G/S + CLB + LOC + NAV + x="629.22266" + y="74.709473" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.9995px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:center;text-anchor:middle;fill:#179ab7;fill-opacity:1;stroke-width:0.657577">NAV - - + + + id="LOC_scale"> + height="41.291069" + width="7.7972813" + id="rect4858" + style="fill:#c9d121;fill-opacity:1;stroke:none;stroke-width:3.91476655;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - + + id="circle4876" + inkscape:connector-curvature="0" + sodipodi:nodetypes="zzzzz" /> + id="g4527" + transform="translate(1.8616028,0)"> - + + id="circle4880" + inkscape:connector-curvature="0" + sodipodi:nodetypes="zzzzz" /> + y="1019.8428" + x="-517.64343" + height="33.21196" + width="33.21196" + id="LOC_pointer" + style="fill:none;fill-opacity:1;stroke:#b055be;stroke-width:4.0350337;stroke-linecap:square;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + inkscape:label="#g4828" + id="ALT_group2"> + width="7.7970567" + height="49.153526" + x="509.50464" + y="-747.05353" + transform="matrix(0,1,-1,0,0,0)" /> STD + + + + + + 000 + + FL 000 + FL 000 + + QNH + STD - - - - - - 000 - - FL 000 - FL 000 - - QNH - 1013 + id="tspan977" + sodipodi:role="line">1013 + id="GS_scale"> + x="509.50464" + height="49.153526" + width="7.7970567" + id="rect4898" + style="fill:#c9d121;fill-opacity:1;stroke:none;stroke-width:4.4806304;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + id="g4531" + transform="translate(0,-1.0792028)"> - + + id="circle4929" + inkscape:connector-curvature="0" + sodipodi:nodetypes="zzzzz" /> - + + id="circle4933" + inkscape:connector-curvature="0" + sodipodi:nodetypes="zzzzz" /> + width="33.211578" + height="33.211578" + x="949.0885" + y="-368.9328" + transform="matrix(0.54714118,0.83704034,-0.54714118,0.83704034,0,0)" + inkscape:label="#rect4872" /> + x="768.71039" + height="59.519768" + width="89.289597" + id="ALT_mask" + style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.4000001;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> + x="858.00543" + height="90.122147" + width="48.851151" + id="ALT_tens_clip" + style="opacity:0.46000001;fill:#ff00ff;fill-opacity:1;stroke:none;stroke-width:1.27696717;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + inkscape:label="#g5167" + id="ALT_frame"> - + id="path4984" + d="m 856.91323,236.93596 0,241.91039" + style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:3.19995403;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> + + inkscape:label="#g5379" + id="ALT_group"> + inkscape:label="#g5173" + id="ALT_box"> - + d="m 856.4002,481.90842 2.2e-4,-15.92813 52.07464,0 0,93.34657 -52.07457,0 0,-15.26583" + style="fill:#000000;fill-opacity:1;stroke:#ffff00;stroke-width:3.19995403;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> +   40402020000080806060404020200000808060 + x="898.703" + sodipodi:role="line" + id="tspan4302">60 00 + x="890.99316" + y="506.23941" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:48.8348px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;text-anchor:end;fill:#0dc04b;fill-opacity:1;stroke-width:0.75">00 - - + + AP 1+2 - 1 FD 2 - A/THR - CAT 3 + x="1080.6229" + id="tspan4268" + sodipodi:role="line">AP 1+2 DUAL + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.9995px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:center;text-anchor:middle;fill:#cecdce;fill-opacity:1;stroke-width:0.657577">1 FD 2 A/THR + CAT 3 + DUAL + NO DH + x="874.48682" + y="115.05846" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.9995px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:center;text-anchor:middle;fill:#cecdce;fill-opacity:1;stroke-width:0.657577">NO DH - + - + + SPEED + + SPEED + x="505.48523" + id="tspan4354" + sodipodi:role="line">FLARE - - FLARE - - DH 250 - - +40 + x="826.09802" + id="tspan4301" + sodipodi:role="line">DH LVR CLB - - - - 00 - - 00 - - - - - 00 - 00 - 00 - - - - - - 00 - - - 00 - - - - - - - - - - - 000 - 000 - + id="tspan4305" + x="922.034" + y="115.05846" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:35.9995px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:center;text-anchor:middle;fill:#179ab7;fill-opacity:1;stroke-width:0.657577">250 + style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:2.4000001;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" + id="FMA_flx_box" + width="171.9402" + height="84.557259" + x="21.79715" + y="5.9218655" + inkscape:label="#rect4290" /> + +40 + LVR CLB + inkscape:label="#g4853" + id="HDG_group"> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 140 - 160 - 120 - 100 - 080 - 060 - 040 - 180 - 200 - 220 - 240 - 260 - 280 - 300 - 320 - 340 - 360 - 380 - 400 - 420 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + id="HDG_scale" + inkscape:label="#g4743" + transform="translate(-104.78479,0)"> + + 00 + 00 + + + + + 00 + 00 + 00 + + + + + + 00 + + + 00 + + + - - - + id="CRS_pointer" + inkscape:label="#g5019" + transform="matrix(1.0666667,0,0,1.066636,7.9500002,2.8086774)"> + + + + + 000 + 000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + id="ASI_scale" + inkscape:label="#g3847" + transform="translate(0.69023445,0)"> + + 140 + 160 + 120 + 100 + 080 + 060 + 040 + 180 + 200 + 220 + 240 + 260 + 280 + 300 + 320 + 340 + 360 + 380 + 400 + 420 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + sodipodi:nodetypes="cc" /> + + + + id="path930" + d="m 92.069682,481.26097 42.765978,0" + style="fill:none;fill-opacity:1;stroke:#c9d121;stroke-width:4.5;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> + + id="ASI_trend_up"> - 000 + + + + + . - 000 - 000 + . . + x="95.148567" + id="tspan4686" + sodipodi:role="line">000 000 + . - - SPD - + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:42px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:start;text-anchor:start;fill:#179ab7;fill-opacity:1;stroke-width:0.75" + y="220.32645" + x="80.506668" + id="tspan4696" + sodipodi:role="line">. + inkscape:label="#g4779" + id="ASI_error"> + SPD + + + + - + d="m 13.167811,790.62913 141.300719,0" + style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:3.19995403;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> - ATT - ALT VATT + /S + id="tspan4386-4-0" + x="851.70166" + y="505.93329" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:48px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:center;text-anchor:middle;fill:#ff0000;fill-opacity:1;stroke-width:0.75">ALT V/S + HDG + x="522.40784" + y="950.08264" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:48px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:end;text-anchor:end;fill:#ff0000;fill-opacity:1;stroke-width:0.75">HDG MACH - ILS - ILS - 000.00 - 0.0 - NM - - - 000 - - - - 000 - + id="tspan1605" + sodipodi:role="line">MACH MM + y="856.17841" + x="663.17761" + id="tspan773" + sodipodi:role="line">ILS ILS + 000.00 + 0.0 + OM + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:24px;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';fill:#179ab7;fill-opacity:1;stroke-width:0.75" + y="1014.0706" + x="116.45473" + id="tspan780-3" + sodipodi:role="line">NM + + + 000 + + + + 000 + MM + OM + IM + x="680.1095" + id="tspan773-9-9" + sodipodi:role="line">IM + inkscape:label="#g5173" + id="ALT_box_flash"> - + d="m 856.4002,481.90842 2.2e-4,-15.92813 52.07464,0 0,93.34657 -52.07457,0 0,-15.26583" + style="fill:none;fill-opacity:1;stroke:#ffff00;stroke-width:6;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke" /> + 000 + x="143.095" + y="263.52979" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:42px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:start;text-anchor:start;fill:#179ab7;fill-opacity:1;stroke-width:0.75">000 + transform="translate(0,132.03033)" + id="v1_group"> + 1 + + + + 1 + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:42px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:start;text-anchor:start;fill:#0dc04b;fill-opacity:1;stroke-width:0.75" + y="562.97687" + x="271.44699" + id="tspan4690-5-6-6" + sodipodi:role="line">S - + id="F_target" + transform="translate(-174.19974,-101.9011)"> S + id="tspan4690-5-6-6-8" + x="337.87274" + y="601.36804" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:42px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';text-align:start;text-anchor:start;fill:#0dc04b;fill-opacity:1;stroke-width:0.75">F + id="flap_max"> - F +