14560 lines
4.9 MiB
Plaintext
14560 lines
4.9 MiB
Plaintext
{
|
|
"cells": [
|
|
{
|
|
"cell_type": "markdown",
|
|
"metadata": {},
|
|
"source": [
|
|
"# Emotion classification multiclass example"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "markdown",
|
|
"metadata": {},
|
|
"source": [
|
|
"This notebook demonstrates how to use the `Partition` explainer for a multiclass text classification scenario. Once the SHAP values are computed for a set of sentences we then visualize feature attributions towards individual classes. The text classifcation model we use is BERT fine-tuned on an emotion dataset to classify a sentence among six classes: joy, sadness, anger, fear, love and surprise."
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 1,
|
|
"metadata": {},
|
|
"outputs": [
|
|
{
|
|
"name": "stderr",
|
|
"output_type": "stream",
|
|
"text": [
|
|
"Using custom data configuration default\n",
|
|
"Reusing dataset emotion (/home/slundberg/.cache/huggingface/datasets/emotion/default/0.0.0/aa34462255cd487d04be8387a2d572588f6ceee23f784f37365aa714afeb8fe6)\n"
|
|
]
|
|
}
|
|
],
|
|
"source": [
|
|
"import datasets\n",
|
|
"import pandas as pd\n",
|
|
"import transformers\n",
|
|
"\n",
|
|
"import shap\n",
|
|
"\n",
|
|
"# load the emotion dataset\n",
|
|
"dataset = datasets.load_dataset(\"emotion\", split=\"train\")\n",
|
|
"data = pd.DataFrame({\"text\": dataset[\"text\"], \"emotion\": dataset[\"label\"]})"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "markdown",
|
|
"metadata": {},
|
|
"source": [
|
|
"### Build a transformers pipline\n",
|
|
"\n",
|
|
"Note that we have set `return_all_scores=True` for the pipeline so we can observe the model's behavior for all classes, not just the top output."
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 2,
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"# load the model and tokenizer\n",
|
|
"tokenizer = transformers.AutoTokenizer.from_pretrained(\"nateraw/bert-base-uncased-emotion\", use_fast=True)\n",
|
|
"model = transformers.AutoModelForSequenceClassification.from_pretrained(\"nateraw/bert-base-uncased-emotion\").cuda()\n",
|
|
"\n",
|
|
"# build a pipeline object to do predictions\n",
|
|
"pred = transformers.pipeline(\n",
|
|
" \"text-classification\",\n",
|
|
" model=model,\n",
|
|
" tokenizer=tokenizer,\n",
|
|
" device=0,\n",
|
|
" return_all_scores=True,\n",
|
|
")"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "markdown",
|
|
"metadata": {},
|
|
"source": [
|
|
"### Create an explainer for the pipeline\n",
|
|
"\n",
|
|
"A transformers pipeline object can be passed directly to `shap.Explainer`, which will then wrap the pipeline model as a `shap.models.TransformersPipeline` model and the pipeline tokenizer as a `shap.maskers.Text` masker."
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 3,
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"explainer = shap.Explainer(pred)"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "markdown",
|
|
"metadata": {},
|
|
"source": [
|
|
"### Compute SHAP values\n",
|
|
"\n",
|
|
"Explainers have the same method signature as the models they are explaining, so we just pass a list of strings for which to explain the classifications."
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 4,
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"shap_values = explainer(data[\"text\"][:3])"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "markdown",
|
|
"metadata": {},
|
|
"source": [
|
|
"### Visualize the impact on all the output classes\n",
|
|
"\n",
|
|
"In the plots below, when you hover your mouse over an output class you get the explanation for that output class. When you click an output class name then that class remains the focus of the explanation visualization until you click another class.\n",
|
|
"\n",
|
|
"The base value is what the model outputs when the entire input text is masked, while $f_{output class}(inputs)$ is the output of the model for the full original input. The SHAP values explain in an addive way how the impact of unmasking each word changes the model output from the base value (where the entire input is masked) to the final prediction value."
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 5,
|
|
"metadata": {
|
|
"scrolled": false
|
|
},
|
|
"outputs": [
|
|
{
|
|
"data": {
|
|
"text/html": [
|
|
"\n",
|
|
"<br>\n",
|
|
"<hr style=\"height: 1px; background-color: #fff; border: none; margin-top: 18px; margin-bottom: 18px; border-top: 1px dashed #ccc;\"\">\n",
|
|
"<div align=\"center\" style=\"margin-top: -35px;\"><div style=\"display: inline-block; background: #fff; padding: 5px; color: #999; font-family: monospace\">[0]</div>\n",
|
|
"</div>\n",
|
|
" "
|
|
],
|
|
"text/plain": [
|
|
"<IPython.core.display.HTML object>"
|
|
]
|
|
},
|
|
"metadata": {},
|
|
"output_type": "display_data"
|
|
},
|
|
{
|
|
"data": {
|
|
"text/html": [
|
|
"<div align='center'>\n",
|
|
"<script>\n",
|
|
" document._hover_kbnkdgnubmfhigadybkg = '_tp_kbnkdgnubmfhigadybkg_output_0';\n",
|
|
" document._zoom_kbnkdgnubmfhigadybkg = undefined;\n",
|
|
" function _output_onclick_kbnkdgnubmfhigadybkg(i) {\n",
|
|
" var next_id = undefined;\n",
|
|
" \n",
|
|
" if (document._zoom_kbnkdgnubmfhigadybkg !== undefined) {\n",
|
|
" document.getElementById(document._zoom_kbnkdgnubmfhigadybkg+ '_zoom').style.display = 'none';\n",
|
|
" \n",
|
|
" if (document._zoom_kbnkdgnubmfhigadybkg === '_tp_kbnkdgnubmfhigadybkg_output_' + i) {\n",
|
|
" document.getElementById(document._zoom_kbnkdgnubmfhigadybkg).style.display = 'block';\n",
|
|
" document.getElementById(document._zoom_kbnkdgnubmfhigadybkg+'_name').style.background = '#dddddd';\n",
|
|
" } else {\n",
|
|
" document.getElementById(document._zoom_kbnkdgnubmfhigadybkg).style.display = 'none';\n",
|
|
" document.getElementById(document._zoom_kbnkdgnubmfhigadybkg+'_name').style.background = '#ffffff';\n",
|
|
" }\n",
|
|
" }\n",
|
|
" if (document._zoom_kbnkdgnubmfhigadybkg !== '_tp_kbnkdgnubmfhigadybkg_output_' + i) {\n",
|
|
" next_id = '_tp_kbnkdgnubmfhigadybkg_output_' + i;\n",
|
|
" document.getElementById(next_id).style.display = 'none';\n",
|
|
" document.getElementById(next_id + '_zoom').style.display = 'block';\n",
|
|
" document.getElementById(next_id+'_name').style.background = '#bbbbbb';\n",
|
|
" }\n",
|
|
" document._zoom_kbnkdgnubmfhigadybkg = next_id;\n",
|
|
" }\n",
|
|
" function _output_onmouseover_kbnkdgnubmfhigadybkg(i, el) {\n",
|
|
" if (document._zoom_kbnkdgnubmfhigadybkg !== undefined) { return; }\n",
|
|
" if (document._hover_kbnkdgnubmfhigadybkg !== undefined) {\n",
|
|
" document.getElementById(document._hover_kbnkdgnubmfhigadybkg + '_name').style.background = '#ffffff';\n",
|
|
" document.getElementById(document._hover_kbnkdgnubmfhigadybkg).style.display = 'none';\n",
|
|
" }\n",
|
|
" document.getElementById('_tp_kbnkdgnubmfhigadybkg_output_' + i).style.display = 'block';\n",
|
|
" el.style.background = '#dddddd';\n",
|
|
" document._hover_kbnkdgnubmfhigadybkg = '_tp_kbnkdgnubmfhigadybkg_output_' + i;\n",
|
|
" }\n",
|
|
"</script>\n",
|
|
"<div style=\"color: rgb(120,120,120); font-size: 12px;\">outputs</div>\n",
|
|
"<div style=\"display: inline; background: #dddddd; border-radius: 3px; padding: 0px\" id=\"_tp_kbnkdgnubmfhigadybkg_output_0_name\"\n",
|
|
" onclick=\"_output_onclick_kbnkdgnubmfhigadybkg(0)\"\n",
|
|
" onmouseover=\"_output_onmouseover_kbnkdgnubmfhigadybkg(0, this);\">sadness</div>\n",
|
|
"<div style=\"display: inline; background: #ffffff; border-radius: 3px; padding: 0px\" id=\"_tp_kbnkdgnubmfhigadybkg_output_1_name\"\n",
|
|
" onclick=\"_output_onclick_kbnkdgnubmfhigadybkg(1)\"\n",
|
|
" onmouseover=\"_output_onmouseover_kbnkdgnubmfhigadybkg(1, this);\">joy</div>\n",
|
|
"<div style=\"display: inline; background: #ffffff; border-radius: 3px; padding: 0px\" id=\"_tp_kbnkdgnubmfhigadybkg_output_2_name\"\n",
|
|
" onclick=\"_output_onclick_kbnkdgnubmfhigadybkg(2)\"\n",
|
|
" onmouseover=\"_output_onmouseover_kbnkdgnubmfhigadybkg(2, this);\">love</div>\n",
|
|
"<div style=\"display: inline; background: #ffffff; border-radius: 3px; padding: 0px\" id=\"_tp_kbnkdgnubmfhigadybkg_output_3_name\"\n",
|
|
" onclick=\"_output_onclick_kbnkdgnubmfhigadybkg(3)\"\n",
|
|
" onmouseover=\"_output_onmouseover_kbnkdgnubmfhigadybkg(3, this);\">anger</div>\n",
|
|
"<div style=\"display: inline; background: #ffffff; border-radius: 3px; padding: 0px\" id=\"_tp_kbnkdgnubmfhigadybkg_output_4_name\"\n",
|
|
" onclick=\"_output_onclick_kbnkdgnubmfhigadybkg(4)\"\n",
|
|
" onmouseover=\"_output_onmouseover_kbnkdgnubmfhigadybkg(4, this);\">fear</div>\n",
|
|
"<div style=\"display: inline; background: #ffffff; border-radius: 3px; padding: 0px\" id=\"_tp_kbnkdgnubmfhigadybkg_output_5_name\"\n",
|
|
" onclick=\"_output_onclick_kbnkdgnubmfhigadybkg(5)\"\n",
|
|
" onmouseover=\"_output_onmouseover_kbnkdgnubmfhigadybkg(5, this);\">surprise</div><br><br><div id='_tp_kbnkdgnubmfhigadybkg_output_0' style='display: block';><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"48.705281698548966%\" y1=\"33\" x2=\"48.705281698548966%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"48.705281698548966%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.3</text><line x1=\"37.053446541506865%\" y1=\"33\" x2=\"37.053446541506865%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"37.053446541506865%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.1</text><line x1=\"25.40161138446477%\" y1=\"33\" x2=\"25.40161138446477%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"25.40161138446477%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.1</text><line x1=\"13.749776227422668%\" y1=\"33\" x2=\"13.749776227422668%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"13.749776227422668%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.3</text><line x1=\"60.357116855591066%\" y1=\"33\" x2=\"60.357116855591066%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"60.357116855591066%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.5</text><line x1=\"72.00895201263315%\" y1=\"33\" x2=\"72.00895201263315%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"72.00895201263315%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.7</text><line x1=\"83.66078716967526%\" y1=\"33\" x2=\"83.66078716967526%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"83.66078716967526%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.9</text><line x1=\"38.89861349869686%\" y1=\"33\" x2=\"38.89861349869686%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"38.89861349869686%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.131672</text><text x=\"38.89861349869686%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.131672</text><text x=\"38.89861349869686%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"89.27743695492715%\" y1=\"33\" x2=\"89.27743695492715%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"89.27743695492715%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.996408</text><text x=\"89.27743695492715%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.996408</text><text x=\"89.27743695492715%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">sadness</tspan>(inputs)</text><rect x=\"38.65540054489026%\" width=\"50.62203641003689%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"39.471173032018115%\" x2=\"89.27743695492715%\" y1=\"60\" y2=\"60\" id=\"_fb_ycwensbhnyvhqciucjha_ind_5\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"64.37430499347263%\" y=\"71\" font-size=\"12px\" id=\"_fs_ycwensbhnyvhqciucjha_ind_5\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.855</text><svg x=\"39.471173032018115%\" y=\"40\" height=\"20\" width=\"49.80626392290904%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">humiliated</text> </svg></svg><line x1=\"38.93975436654488%\" x2=\"39.471173032018115%\" y1=\"60\" y2=\"60\" id=\"_fb_ycwensbhnyvhqciucjha_ind_2\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"39.205463699281495%\" y=\"71\" font-size=\"12px\" id=\"_fs_ycwensbhnyvhqciucjha_ind_2\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.009</text><svg x=\"38.93975436654488%\" y=\"40\" height=\"20\" width=\"0.5314186654732325%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">didn</text> </svg></svg><line x1=\"38.74059268429721%\" x2=\"38.93975436654488%\" y1=\"60\" y2=\"60\" id=\"_fb_ycwensbhnyvhqciucjha_ind_1\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"38.84017352542105%\" y=\"71\" font-size=\"12px\" id=\"_fs_ycwensbhnyvhqciucjha_ind_1\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.003</text><svg x=\"38.74059268429721%\" y=\"40\" height=\"20\" width=\"0.19916168224767006%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"38.65540141301963%\" x2=\"38.74059268429721%\" y1=\"60\" y2=\"60\" id=\"_fb_ycwensbhnyvhqciucjha_ind_3\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"38.69799704865842%\" y=\"71\" font-size=\"12px\" id=\"_fs_ycwensbhnyvhqciucjha_ind_3\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.001</text><svg x=\"38.65540141301963%\" y=\"40\" height=\"20\" width=\"0.08519127127757997%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">t</text> </svg></svg><line x1=\"38.65540054489026%\" x2=\"38.65540141301963%\" y1=\"60\" y2=\"60\" id=\"_fb_ycwensbhnyvhqciucjha_ind_6\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"38.655400978954944%\" y=\"71\" font-size=\"12px\" id=\"_fs_ycwensbhnyvhqciucjha_ind_6\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"38.65540054489026%\" y=\"40\" height=\"20\" width=\"8.681293692802683e-07%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"39.471173032018115%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"39.471173032018115%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"39.471173032018115%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"39.471173032018115%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"39.471173032018115%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"39.471173032018115%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"39.471173032018115%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"39.471173032018115%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"38.93975436654488%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"38.93975436654488%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"38.93975436654488%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"38.93975436654488%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"38.93975436654488%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"38.93975436654488%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"38.93975436654488%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"38.93975436654488%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"38.74059268429721%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"38.74059268429721%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"38.74059268429721%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"38.74059268429721%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"38.74059268429721%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"38.74059268429721%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"38.74059268429721%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"38.74059268429721%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"38.65540141301963%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"38.65540141301963%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"38.65540141301963%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"38.65540141301963%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"38.65540141301963%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"38.65540141301963%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"38.65540141301963%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"38.65540141301963%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"89.27743695492715%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"38.65540054489026%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"89.27743695492715%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"39.471173032018115%\" y=\"40\" height=\"20\" width=\"49.80626392290904%\" onmouseover=\"document.getElementById('_tp_ycwensbhnyvhqciucjha_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_ycwensbhnyvhqciucjha_ind_5').style.opacity = 1;document.getElementById('_fb_ycwensbhnyvhqciucjha_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ycwensbhnyvhqciucjha_ind_5').style.textDecoration = 'none';document.getElementById('_fs_ycwensbhnyvhqciucjha_ind_5').style.opacity = 0;document.getElementById('_fb_ycwensbhnyvhqciucjha_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"39.471173032018115%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"38.93975436654488%\" y=\"40\" height=\"20\" width=\"0.5314186654732325%\" onmouseover=\"document.getElementById('_tp_ycwensbhnyvhqciucjha_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_ycwensbhnyvhqciucjha_ind_2').style.opacity = 1;document.getElementById('_fb_ycwensbhnyvhqciucjha_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ycwensbhnyvhqciucjha_ind_2').style.textDecoration = 'none';document.getElementById('_fs_ycwensbhnyvhqciucjha_ind_2').style.opacity = 0;document.getElementById('_fb_ycwensbhnyvhqciucjha_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"38.93975436654488%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"38.74059268429721%\" y=\"40\" height=\"20\" width=\"0.19916168224767006%\" onmouseover=\"document.getElementById('_tp_ycwensbhnyvhqciucjha_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_ycwensbhnyvhqciucjha_ind_1').style.opacity = 1;document.getElementById('_fb_ycwensbhnyvhqciucjha_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ycwensbhnyvhqciucjha_ind_1').style.textDecoration = 'none';document.getElementById('_fs_ycwensbhnyvhqciucjha_ind_1').style.opacity = 0;document.getElementById('_fb_ycwensbhnyvhqciucjha_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"38.74059268429721%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"38.65540141301963%\" y=\"40\" height=\"20\" width=\"0.08519127127757997%\" onmouseover=\"document.getElementById('_tp_ycwensbhnyvhqciucjha_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_ycwensbhnyvhqciucjha_ind_3').style.opacity = 1;document.getElementById('_fb_ycwensbhnyvhqciucjha_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ycwensbhnyvhqciucjha_ind_3').style.textDecoration = 'none';document.getElementById('_fs_ycwensbhnyvhqciucjha_ind_3').style.opacity = 0;document.getElementById('_fb_ycwensbhnyvhqciucjha_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"38.65540054489026%\" y=\"40\" height=\"20\" width=\"8.681293692802683e-07%\" onmouseover=\"document.getElementById('_tp_ycwensbhnyvhqciucjha_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_ycwensbhnyvhqciucjha_ind_6').style.opacity = 1;document.getElementById('_fb_ycwensbhnyvhqciucjha_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ycwensbhnyvhqciucjha_ind_6').style.textDecoration = 'none';document.getElementById('_fs_ycwensbhnyvhqciucjha_ind_6').style.opacity = 0;document.getElementById('_fb_ycwensbhnyvhqciucjha_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"89.27743695492715%\" width=\"0.2432129538065956%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"89.27743695492715%\" x2=\"89.52064947466906%\" y1=\"60\" y2=\"60\" id=\"_fb_ycwensbhnyvhqciucjha_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"89.3990432147981%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_ycwensbhnyvhqciucjha_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.004</text><svg x=\"89.27743695492715%\" y=\"40\" height=\"20\" width=\"0.2432125197419026%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"89.52064947466906%\" x2=\"89.52064990873374%\" y1=\"60\" y2=\"60\" id=\"_fb_ycwensbhnyvhqciucjha_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"89.52064969170141%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_ycwensbhnyvhqciucjha_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"89.52064947466906%\" y=\"40\" height=\"20\" width=\"4.340646881928478e-07%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"89.52064947466906%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"89.52064947466906%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"89.52064947466906%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"89.52064947466906%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"89.52064947466906%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"89.52064947466906%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"89.52064947466906%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"89.52064947466906%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"89.27743695492715%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"89.52064990873374%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"89.52064947466906%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"89.27743695492715%\" y=\"40\" height=\"20\" width=\"0.2432125197419026%\" onmouseover=\"document.getElementById('_tp_ycwensbhnyvhqciucjha_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_ycwensbhnyvhqciucjha_ind_4').style.opacity = 1;document.getElementById('_fb_ycwensbhnyvhqciucjha_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ycwensbhnyvhqciucjha_ind_4').style.textDecoration = 'none';document.getElementById('_fs_ycwensbhnyvhqciucjha_ind_4').style.opacity = 0;document.getElementById('_fb_ycwensbhnyvhqciucjha_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"89.52064947466906%\" y=\"40\" height=\"20\" width=\"4.340646881928478e-07%\" onmouseover=\"document.getElementById('_tp_ycwensbhnyvhqciucjha_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_ycwensbhnyvhqciucjha_ind_0').style.opacity = 1;document.getElementById('_fb_ycwensbhnyvhqciucjha_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ycwensbhnyvhqciucjha_ind_0').style.textDecoration = 'none';document.getElementById('_fs_ycwensbhnyvhqciucjha_ind_0').style.opacity = 0;document.getElementById('_fb_ycwensbhnyvhqciucjha_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_ycwensbhnyvhqciucjha_ind_0'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ycwensbhnyvhqciucjha_ind_0').style.opacity = 1; document.getElementById('_fs_ycwensbhnyvhqciucjha_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ycwensbhnyvhqciucjha_ind_0').style.opacity = 0; document.getElementById('_fs_ycwensbhnyvhqciucjha_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.003</div\n",
|
|
" ><div id='_tp_ycwensbhnyvhqciucjha_ind_1'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ycwensbhnyvhqciucjha_ind_1').style.opacity = 1; document.getElementById('_fs_ycwensbhnyvhqciucjha_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ycwensbhnyvhqciucjha_ind_1').style.opacity = 0; document.getElementById('_fs_ycwensbhnyvhqciucjha_ind_1').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.009</div\n",
|
|
" ><div id='_tp_ycwensbhnyvhqciucjha_ind_2'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ycwensbhnyvhqciucjha_ind_2').style.opacity = 1; document.getElementById('_fs_ycwensbhnyvhqciucjha_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ycwensbhnyvhqciucjha_ind_2').style.opacity = 0; document.getElementById('_fs_ycwensbhnyvhqciucjha_ind_2').style.opacity = 0;\"\n",
|
|
" >didn</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.001</div\n",
|
|
" ><div id='_tp_ycwensbhnyvhqciucjha_ind_3'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ycwensbhnyvhqciucjha_ind_3').style.opacity = 1; document.getElementById('_fs_ycwensbhnyvhqciucjha_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ycwensbhnyvhqciucjha_ind_3').style.opacity = 0; document.getElementById('_fs_ycwensbhnyvhqciucjha_ind_3').style.opacity = 0;\"\n",
|
|
" >t </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.004</div\n",
|
|
" ><div id='_tp_ycwensbhnyvhqciucjha_ind_4'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ycwensbhnyvhqciucjha_ind_4').style.opacity = 1; document.getElementById('_fs_ycwensbhnyvhqciucjha_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ycwensbhnyvhqciucjha_ind_4').style.opacity = 0; document.getElementById('_fs_ycwensbhnyvhqciucjha_ind_4').style.opacity = 0;\"\n",
|
|
" >feel </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.855</div\n",
|
|
" ><div id='_tp_ycwensbhnyvhqciucjha_ind_5'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 1.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ycwensbhnyvhqciucjha_ind_5').style.opacity = 1; document.getElementById('_fs_ycwensbhnyvhqciucjha_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ycwensbhnyvhqciucjha_ind_5').style.opacity = 0; document.getElementById('_fs_ycwensbhnyvhqciucjha_ind_5').style.opacity = 0;\"\n",
|
|
" >humiliated</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_ycwensbhnyvhqciucjha_ind_6'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ycwensbhnyvhqciucjha_ind_6').style.opacity = 1; document.getElementById('_fs_ycwensbhnyvhqciucjha_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ycwensbhnyvhqciucjha_ind_6').style.opacity = 0; document.getElementById('_fs_ycwensbhnyvhqciucjha_ind_6').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_kbnkdgnubmfhigadybkg_output_0_zoom' style='display: none;'><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"53.43228583071558%\" y1=\"33\" x2=\"53.43228583071558%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"53.43228583071558%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.6</text><line x1=\"43.88759406214162%\" y1=\"33\" x2=\"43.88759406214162%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"43.88759406214162%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.5</text><line x1=\"34.34290229356767%\" y1=\"33\" x2=\"34.34290229356767%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"34.34290229356767%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.4</text><line x1=\"24.79821052499371%\" y1=\"33\" x2=\"24.79821052499371%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"24.79821052499371%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.3</text><line x1=\"15.253518756419759%\" y1=\"33\" x2=\"15.253518756419759%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"15.253518756419759%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.2</text><line x1=\"62.97697759928953%\" y1=\"33\" x2=\"62.97697759928953%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"62.97697759928953%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.7</text><line x1=\"72.52166936786348%\" y1=\"33\" x2=\"72.52166936786348%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"72.52166936786348%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.8</text><line x1=\"82.06636113643744%\" y1=\"33\" x2=\"82.06636113643744%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"82.06636113643744%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.9</text><line x1=\"91.61105290501139%\" y1=\"33\" x2=\"91.61105290501139%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"91.61105290501139%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">1</text><line x1=\"8.731792834953925%\" y1=\"33\" x2=\"8.731792834953925%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"8.731792834953925%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.131672</text><text x=\"8.731792834953925%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.131672</text><text x=\"8.731792834953925%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"91.2682062105769%\" y1=\"33\" x2=\"91.2682062105769%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"91.2682062105769%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.996408</text><text x=\"91.2682062105769%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.996408</text><text x=\"91.2682062105769%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">sadness</tspan>(inputs)</text><rect x=\"8.333333253794235%\" width=\"82.93487295678267%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"9.669826061661055%\" x2=\"91.2682062105769%\" y1=\"60\" y2=\"60\" id=\"_fb_ebisucixnpqsabpuxbqf_ind_5\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"50.46901613611898%\" y=\"71\" font-size=\"12px\" id=\"_fs_ebisucixnpqsabpuxbqf_ind_5\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.855</text><svg x=\"9.669826061661055%\" y=\"40\" height=\"20\" width=\"81.59838014891585%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">humiliated</text> </svg></svg><line x1=\"8.799194561361581%\" x2=\"9.669826061661055%\" y1=\"60\" y2=\"60\" id=\"_fb_ebisucixnpqsabpuxbqf_ind_2\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"9.234510311511318%\" y=\"71\" font-size=\"12px\" id=\"_fs_ebisucixnpqsabpuxbqf_ind_2\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.009</text><svg x=\"8.799194561361581%\" y=\"40\" height=\"20\" width=\"0.8706315002994742%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">didn</text> </svg></svg><line x1=\"8.47290486646905%\" x2=\"8.799194561361581%\" y1=\"60\" y2=\"60\" id=\"_fb_ebisucixnpqsabpuxbqf_ind_1\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.636049713915316%\" y=\"71\" font-size=\"12px\" id=\"_fs_ebisucixnpqsabpuxbqf_ind_1\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.003</text><svg x=\"8.47290486646905%\" y=\"40\" height=\"20\" width=\"0.326289694892532%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"8.333334676064142%\" x2=\"8.47290486646905%\" y1=\"60\" y2=\"60\" id=\"_fb_ebisucixnpqsabpuxbqf_ind_3\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.403119771266596%\" y=\"71\" font-size=\"12px\" id=\"_fs_ebisucixnpqsabpuxbqf_ind_3\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.001</text><svg x=\"8.333334676064142%\" y=\"40\" height=\"20\" width=\"0.13957019040490692%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">t</text> </svg></svg><line x1=\"8.333333253794235%\" x2=\"8.333334676064142%\" y1=\"60\" y2=\"60\" id=\"_fb_ebisucixnpqsabpuxbqf_ind_6\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.333333964929189%\" y=\"71\" font-size=\"12px\" id=\"_fs_ebisucixnpqsabpuxbqf_ind_6\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"8.333333253794235%\" y=\"40\" height=\"20\" width=\"1.422269907180862e-06%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"9.669826061661055%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"9.669826061661055%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"9.669826061661055%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"9.669826061661055%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"9.669826061661055%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"9.669826061661055%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"9.669826061661055%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"9.669826061661055%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.799194561361581%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.799194561361581%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.799194561361581%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.799194561361581%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.799194561361581%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.799194561361581%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.799194561361581%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.799194561361581%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.47290486646905%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.47290486646905%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.47290486646905%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.47290486646905%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.47290486646905%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.47290486646905%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.47290486646905%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.47290486646905%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.333334676064142%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.333334676064142%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.333334676064142%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.333334676064142%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.333334676064142%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.333334676064142%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.333334676064142%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.333334676064142%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"91.2682062105769%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.333333253794235%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"91.2682062105769%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"9.669826061661055%\" y=\"40\" height=\"20\" width=\"81.59838014891585%\" onmouseover=\"document.getElementById('_tp_ebisucixnpqsabpuxbqf_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_ebisucixnpqsabpuxbqf_ind_5').style.opacity = 1;document.getElementById('_fb_ebisucixnpqsabpuxbqf_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ebisucixnpqsabpuxbqf_ind_5').style.textDecoration = 'none';document.getElementById('_fs_ebisucixnpqsabpuxbqf_ind_5').style.opacity = 0;document.getElementById('_fb_ebisucixnpqsabpuxbqf_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"9.669826061661055%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.799194561361581%\" y=\"40\" height=\"20\" width=\"0.8706315002994742%\" onmouseover=\"document.getElementById('_tp_ebisucixnpqsabpuxbqf_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_ebisucixnpqsabpuxbqf_ind_2').style.opacity = 1;document.getElementById('_fb_ebisucixnpqsabpuxbqf_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ebisucixnpqsabpuxbqf_ind_2').style.textDecoration = 'none';document.getElementById('_fs_ebisucixnpqsabpuxbqf_ind_2').style.opacity = 0;document.getElementById('_fb_ebisucixnpqsabpuxbqf_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"8.799194561361581%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.47290486646905%\" y=\"40\" height=\"20\" width=\"0.326289694892532%\" onmouseover=\"document.getElementById('_tp_ebisucixnpqsabpuxbqf_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_ebisucixnpqsabpuxbqf_ind_1').style.opacity = 1;document.getElementById('_fb_ebisucixnpqsabpuxbqf_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ebisucixnpqsabpuxbqf_ind_1').style.textDecoration = 'none';document.getElementById('_fs_ebisucixnpqsabpuxbqf_ind_1').style.opacity = 0;document.getElementById('_fb_ebisucixnpqsabpuxbqf_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"8.47290486646905%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.333334676064142%\" y=\"40\" height=\"20\" width=\"0.13957019040490692%\" onmouseover=\"document.getElementById('_tp_ebisucixnpqsabpuxbqf_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_ebisucixnpqsabpuxbqf_ind_3').style.opacity = 1;document.getElementById('_fb_ebisucixnpqsabpuxbqf_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ebisucixnpqsabpuxbqf_ind_3').style.textDecoration = 'none';document.getElementById('_fs_ebisucixnpqsabpuxbqf_ind_3').style.opacity = 0;document.getElementById('_fb_ebisucixnpqsabpuxbqf_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"8.333333253794235%\" y=\"40\" height=\"20\" width=\"1.422269907180862e-06%\" onmouseover=\"document.getElementById('_tp_ebisucixnpqsabpuxbqf_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_ebisucixnpqsabpuxbqf_ind_6').style.opacity = 1;document.getElementById('_fb_ebisucixnpqsabpuxbqf_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ebisucixnpqsabpuxbqf_ind_6').style.textDecoration = 'none';document.getElementById('_fs_ebisucixnpqsabpuxbqf_ind_6').style.opacity = 0;document.getElementById('_fb_ebisucixnpqsabpuxbqf_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"91.2682062105769%\" width=\"0.39845958115968966%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"91.2682062105769%\" x2=\"91.66666508060165%\" y1=\"60\" y2=\"60\" id=\"_fb_ebisucixnpqsabpuxbqf_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.46743564558928%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_ebisucixnpqsabpuxbqf_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.004</text><svg x=\"91.2682062105769%\" y=\"40\" height=\"20\" width=\"0.39845887002474%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"91.66666508060165%\" x2=\"91.66666579173659%\" y1=\"60\" y2=\"60\" id=\"_fb_ebisucixnpqsabpuxbqf_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.66666543616913%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_ebisucixnpqsabpuxbqf_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"91.66666508060165%\" y=\"40\" height=\"20\" width=\"7.111349447086468e-07%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"91.66666508060165%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.66666508060165%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.66666508060165%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.66666508060165%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.66666508060165%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.66666508060165%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.66666508060165%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.66666508060165%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"91.2682062105769%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66666579173659%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66666508060165%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.2682062105769%\" y=\"40\" height=\"20\" width=\"0.39845887002474%\" onmouseover=\"document.getElementById('_tp_ebisucixnpqsabpuxbqf_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_ebisucixnpqsabpuxbqf_ind_4').style.opacity = 1;document.getElementById('_fb_ebisucixnpqsabpuxbqf_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ebisucixnpqsabpuxbqf_ind_4').style.textDecoration = 'none';document.getElementById('_fs_ebisucixnpqsabpuxbqf_ind_4').style.opacity = 0;document.getElementById('_fb_ebisucixnpqsabpuxbqf_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"91.66666508060165%\" y=\"40\" height=\"20\" width=\"7.111349447086468e-07%\" onmouseover=\"document.getElementById('_tp_ebisucixnpqsabpuxbqf_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_ebisucixnpqsabpuxbqf_ind_0').style.opacity = 1;document.getElementById('_fb_ebisucixnpqsabpuxbqf_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ebisucixnpqsabpuxbqf_ind_0').style.textDecoration = 'none';document.getElementById('_fs_ebisucixnpqsabpuxbqf_ind_0').style.opacity = 0;document.getElementById('_fb_ebisucixnpqsabpuxbqf_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_ebisucixnpqsabpuxbqf_ind_0'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ebisucixnpqsabpuxbqf_ind_0').style.opacity = 1; document.getElementById('_fs_ebisucixnpqsabpuxbqf_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ebisucixnpqsabpuxbqf_ind_0').style.opacity = 0; document.getElementById('_fs_ebisucixnpqsabpuxbqf_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.003</div\n",
|
|
" ><div id='_tp_ebisucixnpqsabpuxbqf_ind_1'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ebisucixnpqsabpuxbqf_ind_1').style.opacity = 1; document.getElementById('_fs_ebisucixnpqsabpuxbqf_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ebisucixnpqsabpuxbqf_ind_1').style.opacity = 0; document.getElementById('_fs_ebisucixnpqsabpuxbqf_ind_1').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.009</div\n",
|
|
" ><div id='_tp_ebisucixnpqsabpuxbqf_ind_2'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ebisucixnpqsabpuxbqf_ind_2').style.opacity = 1; document.getElementById('_fs_ebisucixnpqsabpuxbqf_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ebisucixnpqsabpuxbqf_ind_2').style.opacity = 0; document.getElementById('_fs_ebisucixnpqsabpuxbqf_ind_2').style.opacity = 0;\"\n",
|
|
" >didn</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.001</div\n",
|
|
" ><div id='_tp_ebisucixnpqsabpuxbqf_ind_3'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ebisucixnpqsabpuxbqf_ind_3').style.opacity = 1; document.getElementById('_fs_ebisucixnpqsabpuxbqf_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ebisucixnpqsabpuxbqf_ind_3').style.opacity = 0; document.getElementById('_fs_ebisucixnpqsabpuxbqf_ind_3').style.opacity = 0;\"\n",
|
|
" >t </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.004</div\n",
|
|
" ><div id='_tp_ebisucixnpqsabpuxbqf_ind_4'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ebisucixnpqsabpuxbqf_ind_4').style.opacity = 1; document.getElementById('_fs_ebisucixnpqsabpuxbqf_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ebisucixnpqsabpuxbqf_ind_4').style.opacity = 0; document.getElementById('_fs_ebisucixnpqsabpuxbqf_ind_4').style.opacity = 0;\"\n",
|
|
" >feel </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.855</div\n",
|
|
" ><div id='_tp_ebisucixnpqsabpuxbqf_ind_5'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 1.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ebisucixnpqsabpuxbqf_ind_5').style.opacity = 1; document.getElementById('_fs_ebisucixnpqsabpuxbqf_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ebisucixnpqsabpuxbqf_ind_5').style.opacity = 0; document.getElementById('_fs_ebisucixnpqsabpuxbqf_ind_5').style.opacity = 0;\"\n",
|
|
" >humiliated</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_ebisucixnpqsabpuxbqf_ind_6'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ebisucixnpqsabpuxbqf_ind_6').style.opacity = 1; document.getElementById('_fs_ebisucixnpqsabpuxbqf_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ebisucixnpqsabpuxbqf_ind_6').style.opacity = 0; document.getElementById('_fs_ebisucixnpqsabpuxbqf_ind_6').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_kbnkdgnubmfhigadybkg_output_1' style='display: none';><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"48.705281698548966%\" y1=\"33\" x2=\"48.705281698548966%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"48.705281698548966%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.3</text><line x1=\"37.053446541506865%\" y1=\"33\" x2=\"37.053446541506865%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"37.053446541506865%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.1</text><line x1=\"25.40161138446477%\" y1=\"33\" x2=\"25.40161138446477%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"25.40161138446477%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.1</text><line x1=\"13.749776227422668%\" y1=\"33\" x2=\"13.749776227422668%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"13.749776227422668%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.3</text><line x1=\"60.357116855591066%\" y1=\"33\" x2=\"60.357116855591066%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"60.357116855591066%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.5</text><line x1=\"72.00895201263315%\" y1=\"33\" x2=\"72.00895201263315%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"72.00895201263315%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.7</text><line x1=\"83.66078716967526%\" y1=\"33\" x2=\"83.66078716967526%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"83.66078716967526%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.9</text><line x1=\"44.20637729828965%\" y1=\"33\" x2=\"44.20637729828965%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"44.20637729828965%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.222778</text><text x=\"44.20637729828965%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.222778</text><text x=\"44.20637729828965%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"31.267186201132674%\" y1=\"33\" x2=\"31.267186201132674%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"31.267186201132674%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.000680704</text><text x=\"31.267186201132674%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.000680704</text><text x=\"31.267186201132674%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">joy</tspan>(inputs)</text><rect x=\"20.462731494156635%\" width=\"10.80445470697604%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"20.90660996320696%\" x2=\"31.267186201132674%\" y1=\"60\" y2=\"60\" id=\"_fb_zhmdkvraehfotqeuusjg_ind_4\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"26.086898082169817%\" y=\"71\" font-size=\"12px\" id=\"_fs_zhmdkvraehfotqeuusjg_ind_4\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.178</text><svg x=\"20.90660996320696%\" y=\"40\" height=\"20\" width=\"10.360576237925713%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"20.462735293494298%\" x2=\"20.90660996320696%\" y1=\"60\" y2=\"60\" id=\"_fb_zhmdkvraehfotqeuusjg_ind_3\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"20.68467262835063%\" y=\"71\" font-size=\"12px\" id=\"_fs_zhmdkvraehfotqeuusjg_ind_3\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.008</text><svg x=\"20.462735293494298%\" y=\"40\" height=\"20\" width=\"0.4438746697126632%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">t</text> </svg></svg><line x1=\"20.462732908681883%\" x2=\"20.462735293494298%\" y1=\"60\" y2=\"60\" id=\"_fb_zhmdkvraehfotqeuusjg_ind_6\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"20.46273410108809%\" y=\"71\" font-size=\"12px\" id=\"_fs_zhmdkvraehfotqeuusjg_ind_6\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"20.462732908681883%\" y=\"40\" height=\"20\" width=\"2.384812415101578e-06%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><line x1=\"20.462731494156635%\" x2=\"20.462732908681883%\" y1=\"60\" y2=\"60\" id=\"_fb_zhmdkvraehfotqeuusjg_ind_0\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"20.462732201419257%\" y=\"71\" font-size=\"12px\" id=\"_fs_zhmdkvraehfotqeuusjg_ind_0\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"20.462731494156635%\" y=\"40\" height=\"20\" width=\"1.4145252471564618e-06%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"20.90660996320696%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"20.90660996320696%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"20.90660996320696%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"20.90660996320696%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"20.90660996320696%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"20.90660996320696%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"20.90660996320696%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"20.90660996320696%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"20.462735293494298%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"20.462735293494298%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"20.462735293494298%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"20.462735293494298%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"20.462735293494298%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"20.462735293494298%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"20.462735293494298%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"20.462735293494298%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"20.462732908681883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"20.462732908681883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"20.462732908681883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"20.462732908681883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"20.462732908681883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"20.462732908681883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"20.462732908681883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"20.462732908681883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"31.267186201132674%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"20.462731494156635%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"31.267186201132674%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"20.90660996320696%\" y=\"40\" height=\"20\" width=\"10.360576237925713%\" onmouseover=\"document.getElementById('_tp_zhmdkvraehfotqeuusjg_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_zhmdkvraehfotqeuusjg_ind_4').style.opacity = 1;document.getElementById('_fb_zhmdkvraehfotqeuusjg_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zhmdkvraehfotqeuusjg_ind_4').style.textDecoration = 'none';document.getElementById('_fs_zhmdkvraehfotqeuusjg_ind_4').style.opacity = 0;document.getElementById('_fb_zhmdkvraehfotqeuusjg_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"20.90660996320696%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"20.462735293494298%\" y=\"40\" height=\"20\" width=\"0.4438746697126632%\" onmouseover=\"document.getElementById('_tp_zhmdkvraehfotqeuusjg_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_zhmdkvraehfotqeuusjg_ind_3').style.opacity = 1;document.getElementById('_fb_zhmdkvraehfotqeuusjg_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zhmdkvraehfotqeuusjg_ind_3').style.textDecoration = 'none';document.getElementById('_fs_zhmdkvraehfotqeuusjg_ind_3').style.opacity = 0;document.getElementById('_fb_zhmdkvraehfotqeuusjg_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"20.462735293494298%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"20.462732908681883%\" y=\"40\" height=\"20\" width=\"2.384812415101578e-06%\" onmouseover=\"document.getElementById('_tp_zhmdkvraehfotqeuusjg_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_zhmdkvraehfotqeuusjg_ind_6').style.opacity = 1;document.getElementById('_fb_zhmdkvraehfotqeuusjg_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zhmdkvraehfotqeuusjg_ind_6').style.textDecoration = 'none';document.getElementById('_fs_zhmdkvraehfotqeuusjg_ind_6').style.opacity = 0;document.getElementById('_fb_zhmdkvraehfotqeuusjg_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"20.462731494156635%\" y=\"40\" height=\"20\" width=\"1.4145252471564618e-06%\" onmouseover=\"document.getElementById('_tp_zhmdkvraehfotqeuusjg_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_zhmdkvraehfotqeuusjg_ind_0').style.opacity = 1;document.getElementById('_fb_zhmdkvraehfotqeuusjg_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zhmdkvraehfotqeuusjg_ind_0').style.textDecoration = 'none';document.getElementById('_fs_zhmdkvraehfotqeuusjg_ind_0').style.opacity = 0;document.getElementById('_fb_zhmdkvraehfotqeuusjg_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"31.267186201132674%\" width=\"23.74364580413301%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"31.267186201132674%\" x2=\"54.25430805409484%\" y1=\"60\" y2=\"60\" id=\"_fb_zhmdkvraehfotqeuusjg_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"42.760747127613755%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_zhmdkvraehfotqeuusjg_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.395</text><svg x=\"31.267186201132674%\" y=\"40\" height=\"20\" width=\"22.98712185296217%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">humiliated</text> </svg></svg><line x1=\"54.25430805409484%\" x2=\"54.75657243947181%\" y1=\"60\" y2=\"60\" id=\"_fb_zhmdkvraehfotqeuusjg_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"54.50544024678332%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_zhmdkvraehfotqeuusjg_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.009</text><svg x=\"54.25430805409484%\" y=\"40\" height=\"20\" width=\"0.5022643853769679%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"54.75657243947181%\" x2=\"55.01083200526569%\" y1=\"60\" y2=\"60\" id=\"_fb_zhmdkvraehfotqeuusjg_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"54.883702222368754%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_zhmdkvraehfotqeuusjg_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.004</text><svg x=\"54.75657243947181%\" y=\"40\" height=\"20\" width=\"0.2542595657938804%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">didn</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"54.25430805409484%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"54.25430805409484%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"54.25430805409484%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"54.25430805409484%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"54.25430805409484%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"54.25430805409484%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"54.25430805409484%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"54.25430805409484%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"54.75657243947181%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"54.75657243947181%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"54.75657243947181%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"54.75657243947181%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"54.75657243947181%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"54.75657243947181%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"54.75657243947181%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"54.75657243947181%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"31.267186201132674%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"55.01083200526569%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"54.25430805409484%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"31.267186201132674%\" y=\"40\" height=\"20\" width=\"22.98712185296217%\" onmouseover=\"document.getElementById('_tp_zhmdkvraehfotqeuusjg_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_zhmdkvraehfotqeuusjg_ind_5').style.opacity = 1;document.getElementById('_fb_zhmdkvraehfotqeuusjg_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zhmdkvraehfotqeuusjg_ind_5').style.textDecoration = 'none';document.getElementById('_fs_zhmdkvraehfotqeuusjg_ind_5').style.opacity = 0;document.getElementById('_fb_zhmdkvraehfotqeuusjg_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"54.75657243947181%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"54.25430805409484%\" y=\"40\" height=\"20\" width=\"0.5022643853769679%\" onmouseover=\"document.getElementById('_tp_zhmdkvraehfotqeuusjg_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_zhmdkvraehfotqeuusjg_ind_1').style.opacity = 1;document.getElementById('_fb_zhmdkvraehfotqeuusjg_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zhmdkvraehfotqeuusjg_ind_1').style.textDecoration = 'none';document.getElementById('_fs_zhmdkvraehfotqeuusjg_ind_1').style.opacity = 0;document.getElementById('_fb_zhmdkvraehfotqeuusjg_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"54.75657243947181%\" y=\"40\" height=\"20\" width=\"0.2542595657938804%\" onmouseover=\"document.getElementById('_tp_zhmdkvraehfotqeuusjg_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_zhmdkvraehfotqeuusjg_ind_2').style.opacity = 1;document.getElementById('_fb_zhmdkvraehfotqeuusjg_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zhmdkvraehfotqeuusjg_ind_2').style.textDecoration = 'none';document.getElementById('_fs_zhmdkvraehfotqeuusjg_ind_2').style.opacity = 0;document.getElementById('_fb_zhmdkvraehfotqeuusjg_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_zhmdkvraehfotqeuusjg_ind_0'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_zhmdkvraehfotqeuusjg_ind_0').style.opacity = 1; document.getElementById('_fs_zhmdkvraehfotqeuusjg_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_zhmdkvraehfotqeuusjg_ind_0').style.opacity = 0; document.getElementById('_fs_zhmdkvraehfotqeuusjg_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.009</div\n",
|
|
" ><div id='_tp_zhmdkvraehfotqeuusjg_ind_1'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_zhmdkvraehfotqeuusjg_ind_1').style.opacity = 1; document.getElementById('_fs_zhmdkvraehfotqeuusjg_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_zhmdkvraehfotqeuusjg_ind_1').style.opacity = 0; document.getElementById('_fs_zhmdkvraehfotqeuusjg_ind_1').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.004</div\n",
|
|
" ><div id='_tp_zhmdkvraehfotqeuusjg_ind_2'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_zhmdkvraehfotqeuusjg_ind_2').style.opacity = 1; document.getElementById('_fs_zhmdkvraehfotqeuusjg_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_zhmdkvraehfotqeuusjg_ind_2').style.opacity = 0; document.getElementById('_fs_zhmdkvraehfotqeuusjg_ind_2').style.opacity = 0;\"\n",
|
|
" >didn</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.008</div\n",
|
|
" ><div id='_tp_zhmdkvraehfotqeuusjg_ind_3'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_zhmdkvraehfotqeuusjg_ind_3').style.opacity = 1; document.getElementById('_fs_zhmdkvraehfotqeuusjg_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_zhmdkvraehfotqeuusjg_ind_3').style.opacity = 0; document.getElementById('_fs_zhmdkvraehfotqeuusjg_ind_3').style.opacity = 0;\"\n",
|
|
" >t </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.178</div\n",
|
|
" ><div id='_tp_zhmdkvraehfotqeuusjg_ind_4'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.20384234501881549); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_zhmdkvraehfotqeuusjg_ind_4').style.opacity = 1; document.getElementById('_fs_zhmdkvraehfotqeuusjg_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_zhmdkvraehfotqeuusjg_ind_4').style.opacity = 0; document.getElementById('_fs_zhmdkvraehfotqeuusjg_ind_4').style.opacity = 0;\"\n",
|
|
" >feel </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.395</div\n",
|
|
" ><div id='_tp_zhmdkvraehfotqeuusjg_ind_5'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.46397306397306387); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_zhmdkvraehfotqeuusjg_ind_5').style.opacity = 1; document.getElementById('_fs_zhmdkvraehfotqeuusjg_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_zhmdkvraehfotqeuusjg_ind_5').style.opacity = 0; document.getElementById('_fs_zhmdkvraehfotqeuusjg_ind_5').style.opacity = 0;\"\n",
|
|
" >humiliated</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_zhmdkvraehfotqeuusjg_ind_6'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_zhmdkvraehfotqeuusjg_ind_6').style.opacity = 1; document.getElementById('_fs_zhmdkvraehfotqeuusjg_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_zhmdkvraehfotqeuusjg_ind_6').style.opacity = 0; document.getElementById('_fs_zhmdkvraehfotqeuusjg_ind_6').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_kbnkdgnubmfhigadybkg_output_1_zoom' style='display: none;'><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"48.351729232123404%\" y1=\"33\" x2=\"48.351729232123404%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"48.351729232123404%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.1</text><line x1=\"34.29905723168062%\" y1=\"33\" x2=\"34.29905723168062%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"34.29905723168062%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0</text><line x1=\"20.24638523123785%\" y1=\"33\" x2=\"20.24638523123785%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"20.24638523123785%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.1</text><line x1=\"62.40440123256619%\" y1=\"33\" x2=\"62.40440123256619%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"62.40440123256619%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.2</text><line x1=\"76.45707323300896%\" y1=\"33\" x2=\"76.45707323300896%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"76.45707323300896%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.3</text><line x1=\"90.50974523345174%\" y1=\"33\" x2=\"90.50974523345174%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"90.50974523345174%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.4</text><line x1=\"65.60528430086238%\" y1=\"33\" x2=\"65.60528430086238%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"65.60528430086238%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.222778</text><text x=\"65.60528430086238%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.222778</text><text x=\"65.60528430086238%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"34.39471429387042%\" y1=\"33\" x2=\"34.39471429387042%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"34.39471429387042%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.000680704</text><text x=\"34.39471429387042%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.000680704</text><text x=\"34.39471429387042%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">joy</tspan>(inputs)</text><rect x=\"8.333333216227734%\" width=\"26.06138107764269%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"9.404010658802608%\" x2=\"34.39471429387042%\" y1=\"60\" y2=\"60\" id=\"_fb_xztnxcpwkyrsogkhqagw_ind_4\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"21.899362476336513%\" y=\"71\" font-size=\"12px\" id=\"_fs_xztnxcpwkyrsogkhqagw_ind_4\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.178</text><svg x=\"9.404010658802608%\" y=\"40\" height=\"20\" width=\"24.990703635067813%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"8.333342380594601%\" x2=\"9.404010658802608%\" y1=\"60\" y2=\"60\" id=\"_fb_xztnxcpwkyrsogkhqagw_ind_3\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.868676519698605%\" y=\"71\" font-size=\"12px\" id=\"_fs_xztnxcpwkyrsogkhqagw_ind_3\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.008</text><svg x=\"8.333342380594601%\" y=\"40\" height=\"20\" width=\"1.0706682782080073%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">t</text> </svg></svg><line x1=\"8.333336628198307%\" x2=\"8.333342380594601%\" y1=\"60\" y2=\"60\" id=\"_fb_xztnxcpwkyrsogkhqagw_ind_6\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.333339504396454%\" y=\"71\" font-size=\"12px\" id=\"_fs_xztnxcpwkyrsogkhqagw_ind_6\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"8.333336628198307%\" y=\"40\" height=\"20\" width=\"5.75239629441171e-06%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><line x1=\"8.333333216227734%\" x2=\"8.333336628198307%\" y1=\"60\" y2=\"60\" id=\"_fb_xztnxcpwkyrsogkhqagw_ind_0\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.33333492221302%\" y=\"71\" font-size=\"12px\" id=\"_fs_xztnxcpwkyrsogkhqagw_ind_0\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"8.333333216227734%\" y=\"40\" height=\"20\" width=\"3.411970572742007e-06%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"9.404010658802608%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"9.404010658802608%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"9.404010658802608%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"9.404010658802608%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"9.404010658802608%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"9.404010658802608%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"9.404010658802608%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"9.404010658802608%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.333342380594601%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.333342380594601%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.333342380594601%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.333342380594601%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.333342380594601%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.333342380594601%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.333342380594601%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.333342380594601%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.333336628198307%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.333336628198307%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.333336628198307%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.333336628198307%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.333336628198307%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.333336628198307%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.333336628198307%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.333336628198307%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"34.39471429387042%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.333333216227734%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"34.39471429387042%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"9.404010658802608%\" y=\"40\" height=\"20\" width=\"24.990703635067813%\" onmouseover=\"document.getElementById('_tp_xztnxcpwkyrsogkhqagw_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_xztnxcpwkyrsogkhqagw_ind_4').style.opacity = 1;document.getElementById('_fb_xztnxcpwkyrsogkhqagw_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xztnxcpwkyrsogkhqagw_ind_4').style.textDecoration = 'none';document.getElementById('_fs_xztnxcpwkyrsogkhqagw_ind_4').style.opacity = 0;document.getElementById('_fb_xztnxcpwkyrsogkhqagw_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"9.404010658802608%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.333342380594601%\" y=\"40\" height=\"20\" width=\"1.0706682782080073%\" onmouseover=\"document.getElementById('_tp_xztnxcpwkyrsogkhqagw_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_xztnxcpwkyrsogkhqagw_ind_3').style.opacity = 1;document.getElementById('_fb_xztnxcpwkyrsogkhqagw_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xztnxcpwkyrsogkhqagw_ind_3').style.textDecoration = 'none';document.getElementById('_fs_xztnxcpwkyrsogkhqagw_ind_3').style.opacity = 0;document.getElementById('_fb_xztnxcpwkyrsogkhqagw_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"8.333342380594601%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.333336628198307%\" y=\"40\" height=\"20\" width=\"5.75239629441171e-06%\" onmouseover=\"document.getElementById('_tp_xztnxcpwkyrsogkhqagw_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_xztnxcpwkyrsogkhqagw_ind_6').style.opacity = 1;document.getElementById('_fb_xztnxcpwkyrsogkhqagw_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xztnxcpwkyrsogkhqagw_ind_6').style.textDecoration = 'none';document.getElementById('_fs_xztnxcpwkyrsogkhqagw_ind_6').style.opacity = 0;document.getElementById('_fb_xztnxcpwkyrsogkhqagw_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"8.333333216227734%\" y=\"40\" height=\"20\" width=\"3.411970572742007e-06%\" onmouseover=\"document.getElementById('_tp_xztnxcpwkyrsogkhqagw_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_xztnxcpwkyrsogkhqagw_ind_0').style.opacity = 1;document.getElementById('_fb_xztnxcpwkyrsogkhqagw_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xztnxcpwkyrsogkhqagw_ind_0').style.textDecoration = 'none';document.getElementById('_fs_xztnxcpwkyrsogkhqagw_ind_0').style.opacity = 0;document.getElementById('_fb_xztnxcpwkyrsogkhqagw_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"34.39471429387042%\" width=\"57.271951084634644%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"34.39471429387042%\" x2=\"89.8418570452259%\" y1=\"60\" y2=\"60\" id=\"_fb_xztnxcpwkyrsogkhqagw_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"62.11828566954816%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_xztnxcpwkyrsogkhqagw_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.395</text><svg x=\"34.39471429387042%\" y=\"40\" height=\"20\" width=\"55.44714275135547%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">humiliated</text> </svg></svg><line x1=\"89.8418570452259%\" x2=\"91.05336691814762%\" y1=\"60\" y2=\"60\" id=\"_fb_xztnxcpwkyrsogkhqagw_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"90.44761198168675%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_xztnxcpwkyrsogkhqagw_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.009</text><svg x=\"89.8418570452259%\" y=\"40\" height=\"20\" width=\"1.2115098729217237%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"91.05336691814762%\" x2=\"91.66666537850507%\" y1=\"60\" y2=\"60\" id=\"_fb_xztnxcpwkyrsogkhqagw_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.36001614832634%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_xztnxcpwkyrsogkhqagw_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.004</text><svg x=\"91.05336691814762%\" y=\"40\" height=\"20\" width=\"0.6132984603574556%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">didn</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"89.8418570452259%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"89.8418570452259%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"89.8418570452259%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"89.8418570452259%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"89.8418570452259%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"89.8418570452259%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"89.8418570452259%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"89.8418570452259%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.05336691814762%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.05336691814762%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.05336691814762%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.05336691814762%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.05336691814762%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.05336691814762%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.05336691814762%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.05336691814762%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"34.39471429387042%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66666537850507%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"89.8418570452259%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"34.39471429387042%\" y=\"40\" height=\"20\" width=\"55.44714275135547%\" onmouseover=\"document.getElementById('_tp_xztnxcpwkyrsogkhqagw_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_xztnxcpwkyrsogkhqagw_ind_5').style.opacity = 1;document.getElementById('_fb_xztnxcpwkyrsogkhqagw_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xztnxcpwkyrsogkhqagw_ind_5').style.textDecoration = 'none';document.getElementById('_fs_xztnxcpwkyrsogkhqagw_ind_5').style.opacity = 0;document.getElementById('_fb_xztnxcpwkyrsogkhqagw_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.05336691814762%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"89.8418570452259%\" y=\"40\" height=\"20\" width=\"1.2115098729217237%\" onmouseover=\"document.getElementById('_tp_xztnxcpwkyrsogkhqagw_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_xztnxcpwkyrsogkhqagw_ind_1').style.opacity = 1;document.getElementById('_fb_xztnxcpwkyrsogkhqagw_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xztnxcpwkyrsogkhqagw_ind_1').style.textDecoration = 'none';document.getElementById('_fs_xztnxcpwkyrsogkhqagw_ind_1').style.opacity = 0;document.getElementById('_fb_xztnxcpwkyrsogkhqagw_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"91.05336691814762%\" y=\"40\" height=\"20\" width=\"0.6132984603574556%\" onmouseover=\"document.getElementById('_tp_xztnxcpwkyrsogkhqagw_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_xztnxcpwkyrsogkhqagw_ind_2').style.opacity = 1;document.getElementById('_fb_xztnxcpwkyrsogkhqagw_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xztnxcpwkyrsogkhqagw_ind_2').style.textDecoration = 'none';document.getElementById('_fs_xztnxcpwkyrsogkhqagw_ind_2').style.opacity = 0;document.getElementById('_fb_xztnxcpwkyrsogkhqagw_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_xztnxcpwkyrsogkhqagw_ind_0'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xztnxcpwkyrsogkhqagw_ind_0').style.opacity = 1; document.getElementById('_fs_xztnxcpwkyrsogkhqagw_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xztnxcpwkyrsogkhqagw_ind_0').style.opacity = 0; document.getElementById('_fs_xztnxcpwkyrsogkhqagw_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.009</div\n",
|
|
" ><div id='_tp_xztnxcpwkyrsogkhqagw_ind_1'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xztnxcpwkyrsogkhqagw_ind_1').style.opacity = 1; document.getElementById('_fs_xztnxcpwkyrsogkhqagw_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xztnxcpwkyrsogkhqagw_ind_1').style.opacity = 0; document.getElementById('_fs_xztnxcpwkyrsogkhqagw_ind_1').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.004</div\n",
|
|
" ><div id='_tp_xztnxcpwkyrsogkhqagw_ind_2'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xztnxcpwkyrsogkhqagw_ind_2').style.opacity = 1; document.getElementById('_fs_xztnxcpwkyrsogkhqagw_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xztnxcpwkyrsogkhqagw_ind_2').style.opacity = 0; document.getElementById('_fs_xztnxcpwkyrsogkhqagw_ind_2').style.opacity = 0;\"\n",
|
|
" >didn</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.008</div\n",
|
|
" ><div id='_tp_xztnxcpwkyrsogkhqagw_ind_3'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.014656367597544035); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xztnxcpwkyrsogkhqagw_ind_3').style.opacity = 1; document.getElementById('_fs_xztnxcpwkyrsogkhqagw_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xztnxcpwkyrsogkhqagw_ind_3').style.opacity = 0; document.getElementById('_fs_xztnxcpwkyrsogkhqagw_ind_3').style.opacity = 0;\"\n",
|
|
" >t </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.178</div\n",
|
|
" ><div id='_tp_xztnxcpwkyrsogkhqagw_ind_4'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.44820756585462457); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xztnxcpwkyrsogkhqagw_ind_4').style.opacity = 1; document.getElementById('_fs_xztnxcpwkyrsogkhqagw_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xztnxcpwkyrsogkhqagw_ind_4').style.opacity = 0; document.getElementById('_fs_xztnxcpwkyrsogkhqagw_ind_4').style.opacity = 0;\"\n",
|
|
" >feel </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.395</div\n",
|
|
" ><div id='_tp_xztnxcpwkyrsogkhqagw_ind_5'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 1.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xztnxcpwkyrsogkhqagw_ind_5').style.opacity = 1; document.getElementById('_fs_xztnxcpwkyrsogkhqagw_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xztnxcpwkyrsogkhqagw_ind_5').style.opacity = 0; document.getElementById('_fs_xztnxcpwkyrsogkhqagw_ind_5').style.opacity = 0;\"\n",
|
|
" >humiliated</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_xztnxcpwkyrsogkhqagw_ind_6'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xztnxcpwkyrsogkhqagw_ind_6').style.opacity = 1; document.getElementById('_fs_xztnxcpwkyrsogkhqagw_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xztnxcpwkyrsogkhqagw_ind_6').style.opacity = 0; document.getElementById('_fs_xztnxcpwkyrsogkhqagw_ind_6').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_kbnkdgnubmfhigadybkg_output_2' style='display: none';><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"48.705281698548966%\" y1=\"33\" x2=\"48.705281698548966%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"48.705281698548966%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.3</text><line x1=\"37.053446541506865%\" y1=\"33\" x2=\"37.053446541506865%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"37.053446541506865%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.1</text><line x1=\"25.40161138446477%\" y1=\"33\" x2=\"25.40161138446477%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"25.40161138446477%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.1</text><line x1=\"13.749776227422668%\" y1=\"33\" x2=\"13.749776227422668%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"13.749776227422668%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.3</text><line x1=\"60.357116855591066%\" y1=\"33\" x2=\"60.357116855591066%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"60.357116855591066%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.5</text><line x1=\"72.00895201263315%\" y1=\"33\" x2=\"72.00895201263315%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"72.00895201263315%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.7</text><line x1=\"83.66078716967526%\" y1=\"33\" x2=\"83.66078716967526%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"83.66078716967526%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.9</text><line x1=\"37.4445775409897%\" y1=\"33\" x2=\"37.4445775409897%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"37.4445775409897%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.106714</text><text x=\"37.4445775409897%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.106714</text><text x=\"37.4445775409897%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"31.265339425455803%\" y1=\"33\" x2=\"31.265339425455803%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"31.265339425455803%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.000649004</text><text x=\"31.265339425455803%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.000649004</text><text x=\"31.265339425455803%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">love</tspan>(inputs)</text><rect x=\"31.265339425455803%\" width=\"0.0%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><rect transform=\"translate(-8,0)\" x=\"31.265339425455803%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"31.265339425455803%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><rect x=\"31.265339425455803%\" width=\"6.179238115533894%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"31.265339425455803%\" x2=\"35.70037634297438%\" y1=\"60\" y2=\"60\" id=\"_fb_jqvijqyysefzuahjhsye_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"33.48285788421509%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_jqvijqyysefzuahjhsye_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.076</text><svg x=\"31.265339425455803%\" y=\"40\" height=\"20\" width=\"4.435036917518577%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">humiliated</text> </svg></svg><line x1=\"35.70037634297438%\" x2=\"36.53610460299923%\" y1=\"60\" y2=\"60\" id=\"_fb_jqvijqyysefzuahjhsye_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"36.118240472986805%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_jqvijqyysefzuahjhsye_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.014</text><svg x=\"35.70037634297438%\" y=\"40\" height=\"20\" width=\"0.835728260024851%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">didn</text> </svg></svg><line x1=\"36.53610460299923%\" x2=\"37.007325657076564%\" y1=\"60\" y2=\"60\" id=\"_fb_jqvijqyysefzuahjhsye_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"36.7717151300379%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_jqvijqyysefzuahjhsye_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.008</text><svg x=\"36.53610460299923%\" y=\"40\" height=\"20\" width=\"0.4712210540773327%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"37.007325657076564%\" x2=\"37.41495895453218%\" y1=\"60\" y2=\"60\" id=\"_fb_jqvijqyysefzuahjhsye_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"37.21114230580437%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_jqvijqyysefzuahjhsye_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.007</text><svg x=\"37.007325657076564%\" y=\"40\" height=\"20\" width=\"0.40763329745561805%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">t</text> </svg></svg><line x1=\"37.41495895453218%\" x2=\"37.444576995865496%\" y1=\"60\" y2=\"60\" id=\"_fb_jqvijqyysefzuahjhsye_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"37.42976797519884%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_jqvijqyysefzuahjhsye_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.001</text><svg x=\"37.41495895453218%\" y=\"40\" height=\"20\" width=\"0.029618041333314693%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"37.444576995865496%\" x2=\"37.44457743925579%\" y1=\"60\" y2=\"60\" id=\"_fb_jqvijqyysefzuahjhsye_ind_6\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"37.44457721756064%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_jqvijqyysefzuahjhsye_ind_6\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"37.444576995865496%\" y=\"40\" height=\"20\" width=\"4.4339029159345955e-07%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><line x1=\"37.44457743925579%\" x2=\"37.4445775409897%\" y1=\"60\" y2=\"60\" id=\"_fb_jqvijqyysefzuahjhsye_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"37.44457749012274%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_jqvijqyysefzuahjhsye_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"37.44457743925579%\" y=\"40\" height=\"20\" width=\"1.0173391018497568e-07%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"35.70037634297438%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"35.70037634297438%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"35.70037634297438%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"35.70037634297438%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"35.70037634297438%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"35.70037634297438%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"35.70037634297438%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"35.70037634297438%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"36.53610460299923%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"36.53610460299923%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"36.53610460299923%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"36.53610460299923%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"36.53610460299923%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"36.53610460299923%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"36.53610460299923%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"36.53610460299923%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"37.007325657076564%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"37.007325657076564%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"37.007325657076564%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"37.007325657076564%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"37.007325657076564%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"37.007325657076564%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"37.007325657076564%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"37.007325657076564%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"37.41495895453218%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"37.41495895453218%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"37.41495895453218%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"37.41495895453218%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"37.41495895453218%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"37.41495895453218%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"37.41495895453218%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"37.41495895453218%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"37.444576995865496%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"37.444576995865496%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"37.444576995865496%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"37.444576995865496%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"37.444576995865496%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"37.444576995865496%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"37.444576995865496%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"37.444576995865496%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"37.44457743925579%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"37.44457743925579%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"37.44457743925579%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"37.44457743925579%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"37.44457743925579%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"37.44457743925579%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"37.44457743925579%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"37.44457743925579%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"31.265339425455803%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"37.4445775409897%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"35.70037634297438%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"31.265339425455803%\" y=\"40\" height=\"20\" width=\"4.435036917518577%\" onmouseover=\"document.getElementById('_tp_jqvijqyysefzuahjhsye_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_jqvijqyysefzuahjhsye_ind_5').style.opacity = 1;document.getElementById('_fb_jqvijqyysefzuahjhsye_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_jqvijqyysefzuahjhsye_ind_5').style.textDecoration = 'none';document.getElementById('_fs_jqvijqyysefzuahjhsye_ind_5').style.opacity = 0;document.getElementById('_fb_jqvijqyysefzuahjhsye_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"36.53610460299923%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"35.70037634297438%\" y=\"40\" height=\"20\" width=\"0.835728260024851%\" onmouseover=\"document.getElementById('_tp_jqvijqyysefzuahjhsye_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_jqvijqyysefzuahjhsye_ind_2').style.opacity = 1;document.getElementById('_fb_jqvijqyysefzuahjhsye_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_jqvijqyysefzuahjhsye_ind_2').style.textDecoration = 'none';document.getElementById('_fs_jqvijqyysefzuahjhsye_ind_2').style.opacity = 0;document.getElementById('_fb_jqvijqyysefzuahjhsye_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"37.007325657076564%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"36.53610460299923%\" y=\"40\" height=\"20\" width=\"0.4712210540773327%\" onmouseover=\"document.getElementById('_tp_jqvijqyysefzuahjhsye_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_jqvijqyysefzuahjhsye_ind_1').style.opacity = 1;document.getElementById('_fb_jqvijqyysefzuahjhsye_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_jqvijqyysefzuahjhsye_ind_1').style.textDecoration = 'none';document.getElementById('_fs_jqvijqyysefzuahjhsye_ind_1').style.opacity = 0;document.getElementById('_fb_jqvijqyysefzuahjhsye_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"37.41495895453218%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"37.007325657076564%\" y=\"40\" height=\"20\" width=\"0.40763329745561805%\" onmouseover=\"document.getElementById('_tp_jqvijqyysefzuahjhsye_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_jqvijqyysefzuahjhsye_ind_3').style.opacity = 1;document.getElementById('_fb_jqvijqyysefzuahjhsye_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_jqvijqyysefzuahjhsye_ind_3').style.textDecoration = 'none';document.getElementById('_fs_jqvijqyysefzuahjhsye_ind_3').style.opacity = 0;document.getElementById('_fb_jqvijqyysefzuahjhsye_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"37.444576995865496%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"37.41495895453218%\" y=\"40\" height=\"20\" width=\"0.029618041333314693%\" onmouseover=\"document.getElementById('_tp_jqvijqyysefzuahjhsye_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_jqvijqyysefzuahjhsye_ind_4').style.opacity = 1;document.getElementById('_fb_jqvijqyysefzuahjhsye_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_jqvijqyysefzuahjhsye_ind_4').style.textDecoration = 'none';document.getElementById('_fs_jqvijqyysefzuahjhsye_ind_4').style.opacity = 0;document.getElementById('_fb_jqvijqyysefzuahjhsye_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"37.44457743925579%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"37.444576995865496%\" y=\"40\" height=\"20\" width=\"4.4339029159345955e-07%\" onmouseover=\"document.getElementById('_tp_jqvijqyysefzuahjhsye_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_jqvijqyysefzuahjhsye_ind_6').style.opacity = 1;document.getElementById('_fb_jqvijqyysefzuahjhsye_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_jqvijqyysefzuahjhsye_ind_6').style.textDecoration = 'none';document.getElementById('_fs_jqvijqyysefzuahjhsye_ind_6').style.opacity = 0;document.getElementById('_fb_jqvijqyysefzuahjhsye_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"37.44457743925579%\" y=\"40\" height=\"20\" width=\"1.0173391018497568e-07%\" onmouseover=\"document.getElementById('_tp_jqvijqyysefzuahjhsye_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_jqvijqyysefzuahjhsye_ind_0').style.opacity = 1;document.getElementById('_fb_jqvijqyysefzuahjhsye_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_jqvijqyysefzuahjhsye_ind_0').style.textDecoration = 'none';document.getElementById('_fs_jqvijqyysefzuahjhsye_ind_0').style.opacity = 0;document.getElementById('_fb_jqvijqyysefzuahjhsye_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_jqvijqyysefzuahjhsye_ind_0'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_jqvijqyysefzuahjhsye_ind_0').style.opacity = 1; document.getElementById('_fs_jqvijqyysefzuahjhsye_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_jqvijqyysefzuahjhsye_ind_0').style.opacity = 0; document.getElementById('_fs_jqvijqyysefzuahjhsye_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.008</div\n",
|
|
" ><div id='_tp_jqvijqyysefzuahjhsye_ind_1'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_jqvijqyysefzuahjhsye_ind_1').style.opacity = 1; document.getElementById('_fs_jqvijqyysefzuahjhsye_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_jqvijqyysefzuahjhsye_ind_1').style.opacity = 0; document.getElementById('_fs_jqvijqyysefzuahjhsye_ind_1').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.014</div\n",
|
|
" ><div id='_tp_jqvijqyysefzuahjhsye_ind_2'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_jqvijqyysefzuahjhsye_ind_2').style.opacity = 1; document.getElementById('_fs_jqvijqyysefzuahjhsye_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_jqvijqyysefzuahjhsye_ind_2').style.opacity = 0; document.getElementById('_fs_jqvijqyysefzuahjhsye_ind_2').style.opacity = 0;\"\n",
|
|
" >didn</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.007</div\n",
|
|
" ><div id='_tp_jqvijqyysefzuahjhsye_ind_3'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_jqvijqyysefzuahjhsye_ind_3').style.opacity = 1; document.getElementById('_fs_jqvijqyysefzuahjhsye_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_jqvijqyysefzuahjhsye_ind_3').style.opacity = 0; document.getElementById('_fs_jqvijqyysefzuahjhsye_ind_3').style.opacity = 0;\"\n",
|
|
" >t </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.001</div\n",
|
|
" ><div id='_tp_jqvijqyysefzuahjhsye_ind_4'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_jqvijqyysefzuahjhsye_ind_4').style.opacity = 1; document.getElementById('_fs_jqvijqyysefzuahjhsye_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_jqvijqyysefzuahjhsye_ind_4').style.opacity = 0; document.getElementById('_fs_jqvijqyysefzuahjhsye_ind_4').style.opacity = 0;\"\n",
|
|
" >feel </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.076</div\n",
|
|
" ><div id='_tp_jqvijqyysefzuahjhsye_ind_5'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.08560110913052085); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_jqvijqyysefzuahjhsye_ind_5').style.opacity = 1; document.getElementById('_fs_jqvijqyysefzuahjhsye_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_jqvijqyysefzuahjhsye_ind_5').style.opacity = 0; document.getElementById('_fs_jqvijqyysefzuahjhsye_ind_5').style.opacity = 0;\"\n",
|
|
" >humiliated</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_jqvijqyysefzuahjhsye_ind_6'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_jqvijqyysefzuahjhsye_ind_6').style.opacity = 1; document.getElementById('_fs_jqvijqyysefzuahjhsye_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_jqvijqyysefzuahjhsye_ind_6').style.opacity = 0; document.getElementById('_fs_jqvijqyysefzuahjhsye_ind_6').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_kbnkdgnubmfhigadybkg_output_2_zoom' style='display: none;'><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"47.10763957449601%\" y1=\"33\" x2=\"47.10763957449601%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"47.10763957449601%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.05</text><line x1=\"31.39395175986044%\" y1=\"33\" x2=\"31.39395175986044%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"31.39395175986044%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.03</text><line x1=\"15.680263945224869%\" y1=\"33\" x2=\"15.680263945224869%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"15.680263945224869%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.01</text><line x1=\"62.821327389131596%\" y1=\"33\" x2=\"62.821327389131596%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"62.821327389131596%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.07</text><line x1=\"78.53501520376716%\" y1=\"33\" x2=\"78.53501520376716%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"78.53501520376716%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.09</text><line x1=\"91.66665946455976%\" y1=\"33\" x2=\"91.66665946455976%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"91.66665946455976%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.106714</text><text x=\"91.66665946455976%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.106714</text><text x=\"91.66665946455976%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"8.333332678596342%\" y1=\"33\" x2=\"8.333332678596342%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"8.333332678596342%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.000649004</text><text x=\"8.333332678596342%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.000649004</text><text x=\"8.333332678596342%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">love</tspan>(inputs)</text><rect x=\"8.333332678596342%\" width=\"0.0%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><rect transform=\"translate(-8,0)\" x=\"8.333332678596342%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.333332678596342%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><rect x=\"8.333332678596342%\" width=\"83.33332678596341%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"8.333332678596342%\" x2=\"68.14432779566259%\" y1=\"60\" y2=\"60\" id=\"_fb_ygqxchfrtosrgztdmwnj_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"38.23883023712946%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_ygqxchfrtosrgztdmwnj_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.076</text><svg x=\"8.333332678596342%\" y=\"40\" height=\"20\" width=\"59.81099511706625%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">humiliated</text> </svg></svg><line x1=\"68.14432779566259%\" x2=\"79.41497555106116%\" y1=\"60\" y2=\"60\" id=\"_fb_ygqxchfrtosrgztdmwnj_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"73.77965167336188%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_ygqxchfrtosrgztdmwnj_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.014</text><svg x=\"68.14432779566259%\" y=\"40\" height=\"20\" width=\"11.27064775539857%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">didn</text> </svg></svg><line x1=\"79.41497555106116%\" x2=\"85.76987195635368%\" y1=\"60\" y2=\"60\" id=\"_fb_ygqxchfrtosrgztdmwnj_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"82.59242375370742%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_ygqxchfrtosrgztdmwnj_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.008</text><svg x=\"79.41497555106116%\" y=\"40\" height=\"20\" width=\"6.354896405292521%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"85.76987195635368%\" x2=\"91.2672226249277%\" y1=\"60\" y2=\"60\" id=\"_fb_ygqxchfrtosrgztdmwnj_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"88.5185472906407%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_ygqxchfrtosrgztdmwnj_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.007</text><svg x=\"85.76987195635368%\" y=\"40\" height=\"20\" width=\"5.497350668574015%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">t</text> </svg></svg><line x1=\"91.2672226249277%\" x2=\"91.66665211300402%\" y1=\"60\" y2=\"60\" id=\"_fb_ygqxchfrtosrgztdmwnj_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.46693736896586%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_ygqxchfrtosrgztdmwnj_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.001</text><svg x=\"91.2672226249277%\" y=\"40\" height=\"20\" width=\"0.39942948807632206%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"91.66665211300402%\" x2=\"91.66665809257424%\" y1=\"60\" y2=\"60\" id=\"_fb_ygqxchfrtosrgztdmwnj_ind_6\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.66665510278912%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_ygqxchfrtosrgztdmwnj_ind_6\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"91.66665211300402%\" y=\"40\" height=\"20\" width=\"5.979570218528352e-06%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><line x1=\"91.66665809257424%\" x2=\"91.66665946455976%\" y1=\"60\" y2=\"60\" id=\"_fb_ygqxchfrtosrgztdmwnj_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.666658778567%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_ygqxchfrtosrgztdmwnj_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"91.66665809257424%\" y=\"40\" height=\"20\" width=\"1.3719855189719965e-06%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"68.14432779566259%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"68.14432779566259%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"68.14432779566259%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"68.14432779566259%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"68.14432779566259%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"68.14432779566259%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"68.14432779566259%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"68.14432779566259%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"79.41497555106116%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"79.41497555106116%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"79.41497555106116%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"79.41497555106116%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"79.41497555106116%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"79.41497555106116%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"79.41497555106116%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"79.41497555106116%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"85.76987195635368%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"85.76987195635368%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"85.76987195635368%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"85.76987195635368%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"85.76987195635368%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"85.76987195635368%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"85.76987195635368%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"85.76987195635368%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.2672226249277%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.2672226249277%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.2672226249277%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.2672226249277%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.2672226249277%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.2672226249277%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.2672226249277%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.2672226249277%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.66665211300402%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.66665211300402%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.66665211300402%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.66665211300402%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.66665211300402%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.66665211300402%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.66665211300402%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.66665211300402%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.66665809257424%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.66665809257424%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.66665809257424%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.66665809257424%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.66665809257424%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.66665809257424%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.66665809257424%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.66665809257424%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"8.333332678596342%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66665946455976%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"68.14432779566259%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"8.333332678596342%\" y=\"40\" height=\"20\" width=\"59.81099511706625%\" onmouseover=\"document.getElementById('_tp_ygqxchfrtosrgztdmwnj_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_ygqxchfrtosrgztdmwnj_ind_5').style.opacity = 1;document.getElementById('_fb_ygqxchfrtosrgztdmwnj_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ygqxchfrtosrgztdmwnj_ind_5').style.textDecoration = 'none';document.getElementById('_fs_ygqxchfrtosrgztdmwnj_ind_5').style.opacity = 0;document.getElementById('_fb_ygqxchfrtosrgztdmwnj_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"79.41497555106116%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"68.14432779566259%\" y=\"40\" height=\"20\" width=\"11.27064775539857%\" onmouseover=\"document.getElementById('_tp_ygqxchfrtosrgztdmwnj_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_ygqxchfrtosrgztdmwnj_ind_2').style.opacity = 1;document.getElementById('_fb_ygqxchfrtosrgztdmwnj_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ygqxchfrtosrgztdmwnj_ind_2').style.textDecoration = 'none';document.getElementById('_fs_ygqxchfrtosrgztdmwnj_ind_2').style.opacity = 0;document.getElementById('_fb_ygqxchfrtosrgztdmwnj_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"85.76987195635368%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"79.41497555106116%\" y=\"40\" height=\"20\" width=\"6.354896405292521%\" onmouseover=\"document.getElementById('_tp_ygqxchfrtosrgztdmwnj_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_ygqxchfrtosrgztdmwnj_ind_1').style.opacity = 1;document.getElementById('_fb_ygqxchfrtosrgztdmwnj_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ygqxchfrtosrgztdmwnj_ind_1').style.textDecoration = 'none';document.getElementById('_fs_ygqxchfrtosrgztdmwnj_ind_1').style.opacity = 0;document.getElementById('_fb_ygqxchfrtosrgztdmwnj_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.2672226249277%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"85.76987195635368%\" y=\"40\" height=\"20\" width=\"5.497350668574015%\" onmouseover=\"document.getElementById('_tp_ygqxchfrtosrgztdmwnj_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_ygqxchfrtosrgztdmwnj_ind_3').style.opacity = 1;document.getElementById('_fb_ygqxchfrtosrgztdmwnj_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ygqxchfrtosrgztdmwnj_ind_3').style.textDecoration = 'none';document.getElementById('_fs_ygqxchfrtosrgztdmwnj_ind_3').style.opacity = 0;document.getElementById('_fb_ygqxchfrtosrgztdmwnj_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66665211300402%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.2672226249277%\" y=\"40\" height=\"20\" width=\"0.39942948807632206%\" onmouseover=\"document.getElementById('_tp_ygqxchfrtosrgztdmwnj_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_ygqxchfrtosrgztdmwnj_ind_4').style.opacity = 1;document.getElementById('_fb_ygqxchfrtosrgztdmwnj_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ygqxchfrtosrgztdmwnj_ind_4').style.textDecoration = 'none';document.getElementById('_fs_ygqxchfrtosrgztdmwnj_ind_4').style.opacity = 0;document.getElementById('_fb_ygqxchfrtosrgztdmwnj_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66665809257424%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.66665211300402%\" y=\"40\" height=\"20\" width=\"5.979570218528352e-06%\" onmouseover=\"document.getElementById('_tp_ygqxchfrtosrgztdmwnj_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_ygqxchfrtosrgztdmwnj_ind_6').style.opacity = 1;document.getElementById('_fb_ygqxchfrtosrgztdmwnj_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ygqxchfrtosrgztdmwnj_ind_6').style.textDecoration = 'none';document.getElementById('_fs_ygqxchfrtosrgztdmwnj_ind_6').style.opacity = 0;document.getElementById('_fb_ygqxchfrtosrgztdmwnj_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"91.66665809257424%\" y=\"40\" height=\"20\" width=\"1.3719855189719965e-06%\" onmouseover=\"document.getElementById('_tp_ygqxchfrtosrgztdmwnj_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_ygqxchfrtosrgztdmwnj_ind_0').style.opacity = 1;document.getElementById('_fb_ygqxchfrtosrgztdmwnj_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ygqxchfrtosrgztdmwnj_ind_0').style.textDecoration = 'none';document.getElementById('_fs_ygqxchfrtosrgztdmwnj_ind_0').style.opacity = 0;document.getElementById('_fb_ygqxchfrtosrgztdmwnj_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_ygqxchfrtosrgztdmwnj_ind_0'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ygqxchfrtosrgztdmwnj_ind_0').style.opacity = 1; document.getElementById('_fs_ygqxchfrtosrgztdmwnj_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ygqxchfrtosrgztdmwnj_ind_0').style.opacity = 0; document.getElementById('_fs_ygqxchfrtosrgztdmwnj_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.008</div\n",
|
|
" ><div id='_tp_ygqxchfrtosrgztdmwnj_ind_1'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.10136660724896014); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ygqxchfrtosrgztdmwnj_ind_1').style.opacity = 1; document.getElementById('_fs_ygqxchfrtosrgztdmwnj_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ygqxchfrtosrgztdmwnj_ind_1').style.opacity = 0; document.getElementById('_fs_ygqxchfrtosrgztdmwnj_ind_1').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.014</div\n",
|
|
" ><div id='_tp_ygqxchfrtosrgztdmwnj_ind_2'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.1880768469003762); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ygqxchfrtosrgztdmwnj_ind_2').style.opacity = 1; document.getElementById('_fs_ygqxchfrtosrgztdmwnj_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ygqxchfrtosrgztdmwnj_ind_2').style.opacity = 0; document.getElementById('_fs_ygqxchfrtosrgztdmwnj_ind_2').style.opacity = 0;\"\n",
|
|
" >didn</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.007</div\n",
|
|
" ><div id='_tp_ygqxchfrtosrgztdmwnj_ind_3'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.08560110913052085); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ygqxchfrtosrgztdmwnj_ind_3').style.opacity = 1; document.getElementById('_fs_ygqxchfrtosrgztdmwnj_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ygqxchfrtosrgztdmwnj_ind_3').style.opacity = 0; document.getElementById('_fs_ygqxchfrtosrgztdmwnj_ind_3').style.opacity = 0;\"\n",
|
|
" >t </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.001</div\n",
|
|
" ><div id='_tp_ygqxchfrtosrgztdmwnj_ind_4'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ygqxchfrtosrgztdmwnj_ind_4').style.opacity = 1; document.getElementById('_fs_ygqxchfrtosrgztdmwnj_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ygqxchfrtosrgztdmwnj_ind_4').style.opacity = 0; document.getElementById('_fs_ygqxchfrtosrgztdmwnj_ind_4').style.opacity = 0;\"\n",
|
|
" >feel </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.076</div\n",
|
|
" ><div id='_tp_ygqxchfrtosrgztdmwnj_ind_5'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 1.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ygqxchfrtosrgztdmwnj_ind_5').style.opacity = 1; document.getElementById('_fs_ygqxchfrtosrgztdmwnj_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ygqxchfrtosrgztdmwnj_ind_5').style.opacity = 0; document.getElementById('_fs_ygqxchfrtosrgztdmwnj_ind_5').style.opacity = 0;\"\n",
|
|
" >humiliated</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_ygqxchfrtosrgztdmwnj_ind_6'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ygqxchfrtosrgztdmwnj_ind_6').style.opacity = 1; document.getElementById('_fs_ygqxchfrtosrgztdmwnj_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ygqxchfrtosrgztdmwnj_ind_6').style.opacity = 0; document.getElementById('_fs_ygqxchfrtosrgztdmwnj_ind_6').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_kbnkdgnubmfhigadybkg_output_3' style='display: none';><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"48.705281698548966%\" y1=\"33\" x2=\"48.705281698548966%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"48.705281698548966%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.3</text><line x1=\"37.053446541506865%\" y1=\"33\" x2=\"37.053446541506865%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"37.053446541506865%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.1</text><line x1=\"25.40161138446477%\" y1=\"33\" x2=\"25.40161138446477%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"25.40161138446477%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.1</text><line x1=\"13.749776227422668%\" y1=\"33\" x2=\"13.749776227422668%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"13.749776227422668%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.3</text><line x1=\"60.357116855591066%\" y1=\"33\" x2=\"60.357116855591066%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"60.357116855591066%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.5</text><line x1=\"72.00895201263315%\" y1=\"33\" x2=\"72.00895201263315%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"72.00895201263315%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.7</text><line x1=\"83.66078716967526%\" y1=\"33\" x2=\"83.66078716967526%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"83.66078716967526%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.9</text><line x1=\"47.476886280391895%\" y1=\"33\" x2=\"47.476886280391895%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"47.476886280391895%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.278915</text><text x=\"47.476886280391895%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.278915</text><text x=\"47.476886280391895%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"31.299374630677406%\" y1=\"33\" x2=\"31.299374630677406%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"31.299374630677406%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.00123321</text><text x=\"31.299374630677406%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.00123321</text><text x=\"31.299374630677406%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">anger</tspan>(inputs)</text><rect x=\"28.274379585209818%\" width=\"3.0249950454675893%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"29.663191470102326%\" x2=\"31.299374630677406%\" y1=\"60\" y2=\"60\" id=\"_fb_gkykjngnhbocjbbyxdeo_ind_2\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"30.481283050389866%\" y=\"71\" font-size=\"12px\" id=\"_fs_gkykjngnhbocjbbyxdeo_ind_2\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.028</text><svg x=\"29.663191470102326%\" y=\"40\" height=\"20\" width=\"1.6361831605750794%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">didn</text> </svg></svg><line x1=\"28.760752077433313%\" x2=\"29.663191470102326%\" y1=\"60\" y2=\"60\" id=\"_fb_gkykjngnhbocjbbyxdeo_ind_1\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"29.21197177376782%\" y=\"71\" font-size=\"12px\" id=\"_fs_gkykjngnhbocjbbyxdeo_ind_1\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.015</text><svg x=\"28.760752077433313%\" y=\"40\" height=\"20\" width=\"0.9024393926690131%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"28.274379585209818%\" x2=\"28.760752077433313%\" y1=\"60\" y2=\"60\" id=\"_fb_gkykjngnhbocjbbyxdeo_ind_3\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"28.517565831321566%\" y=\"71\" font-size=\"12px\" id=\"_fs_gkykjngnhbocjbbyxdeo_ind_3\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.008</text><svg x=\"28.274379585209818%\" y=\"40\" height=\"20\" width=\"0.4863724922234951%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">t</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"29.663191470102326%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"29.663191470102326%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"29.663191470102326%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"29.663191470102326%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"29.663191470102326%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"29.663191470102326%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"29.663191470102326%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"29.663191470102326%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"28.760752077433313%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"28.760752077433313%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"28.760752077433313%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"28.760752077433313%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"28.760752077433313%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"28.760752077433313%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"28.760752077433313%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"28.760752077433313%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"31.299374630677406%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"28.274379585209818%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"31.299374630677406%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"29.663191470102326%\" y=\"40\" height=\"20\" width=\"1.6361831605750794%\" onmouseover=\"document.getElementById('_tp_gkykjngnhbocjbbyxdeo_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_gkykjngnhbocjbbyxdeo_ind_2').style.opacity = 1;document.getElementById('_fb_gkykjngnhbocjbbyxdeo_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gkykjngnhbocjbbyxdeo_ind_2').style.textDecoration = 'none';document.getElementById('_fs_gkykjngnhbocjbbyxdeo_ind_2').style.opacity = 0;document.getElementById('_fb_gkykjngnhbocjbbyxdeo_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"29.663191470102326%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"28.760752077433313%\" y=\"40\" height=\"20\" width=\"0.9024393926690131%\" onmouseover=\"document.getElementById('_tp_gkykjngnhbocjbbyxdeo_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_gkykjngnhbocjbbyxdeo_ind_1').style.opacity = 1;document.getElementById('_fb_gkykjngnhbocjbbyxdeo_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gkykjngnhbocjbbyxdeo_ind_1').style.textDecoration = 'none';document.getElementById('_fs_gkykjngnhbocjbbyxdeo_ind_1').style.opacity = 0;document.getElementById('_fb_gkykjngnhbocjbbyxdeo_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"28.274379585209818%\" y=\"40\" height=\"20\" width=\"0.4863724922234951%\" onmouseover=\"document.getElementById('_tp_gkykjngnhbocjbbyxdeo_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_gkykjngnhbocjbbyxdeo_ind_3').style.opacity = 1;document.getElementById('_fb_gkykjngnhbocjbbyxdeo_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gkykjngnhbocjbbyxdeo_ind_3').style.textDecoration = 'none';document.getElementById('_fs_gkykjngnhbocjbbyxdeo_ind_3').style.opacity = 0;document.getElementById('_fb_gkykjngnhbocjbbyxdeo_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"31.299374630677406%\" width=\"19.202506695182077%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"31.299374630677406%\" x2=\"42.91242758057054%\" y1=\"60\" y2=\"60\" id=\"_fb_gkykjngnhbocjbbyxdeo_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"37.10590110562397%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_gkykjngnhbocjbbyxdeo_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.199</text><svg x=\"31.299374630677406%\" y=\"40\" height=\"20\" width=\"11.613052949893131%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">humiliated</text> </svg></svg><line x1=\"42.91242758057054%\" x2=\"50.501879995688604%\" y1=\"60\" y2=\"60\" id=\"_fb_gkykjngnhbocjbbyxdeo_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"46.707153788129574%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_gkykjngnhbocjbbyxdeo_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.13</text><svg x=\"42.91242758057054%\" y=\"40\" height=\"20\" width=\"7.589452415118068%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"50.501879995688604%\" x2=\"50.50188125803688%\" y1=\"60\" y2=\"60\" id=\"_fb_gkykjngnhbocjbbyxdeo_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"50.50188062686274%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_gkykjngnhbocjbbyxdeo_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"50.501879995688604%\" y=\"40\" height=\"20\" width=\"1.262348277464298e-06%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><line x1=\"50.50188125803688%\" x2=\"50.501881325859486%\" y1=\"60\" y2=\"60\" id=\"_fb_gkykjngnhbocjbbyxdeo_ind_6\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"50.50188129194818%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_gkykjngnhbocjbbyxdeo_ind_6\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"50.50188125803688%\" y=\"40\" height=\"20\" width=\"6.7822604421508e-08%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"42.91242758057054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"42.91242758057054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"42.91242758057054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"42.91242758057054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"42.91242758057054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"42.91242758057054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"42.91242758057054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"42.91242758057054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"50.501879995688604%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"50.501879995688604%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"50.501879995688604%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"50.501879995688604%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"50.501879995688604%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"50.501879995688604%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"50.501879995688604%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"50.501879995688604%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"50.50188125803688%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"50.50188125803688%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"50.50188125803688%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"50.50188125803688%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"50.50188125803688%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"50.50188125803688%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"50.50188125803688%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"50.50188125803688%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"31.299374630677406%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"50.501881325859486%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"42.91242758057054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"31.299374630677406%\" y=\"40\" height=\"20\" width=\"11.613052949893131%\" onmouseover=\"document.getElementById('_tp_gkykjngnhbocjbbyxdeo_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_gkykjngnhbocjbbyxdeo_ind_5').style.opacity = 1;document.getElementById('_fb_gkykjngnhbocjbbyxdeo_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gkykjngnhbocjbbyxdeo_ind_5').style.textDecoration = 'none';document.getElementById('_fs_gkykjngnhbocjbbyxdeo_ind_5').style.opacity = 0;document.getElementById('_fb_gkykjngnhbocjbbyxdeo_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"50.501879995688604%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"42.91242758057054%\" y=\"40\" height=\"20\" width=\"7.589452415118068%\" onmouseover=\"document.getElementById('_tp_gkykjngnhbocjbbyxdeo_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_gkykjngnhbocjbbyxdeo_ind_4').style.opacity = 1;document.getElementById('_fb_gkykjngnhbocjbbyxdeo_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gkykjngnhbocjbbyxdeo_ind_4').style.textDecoration = 'none';document.getElementById('_fs_gkykjngnhbocjbbyxdeo_ind_4').style.opacity = 0;document.getElementById('_fb_gkykjngnhbocjbbyxdeo_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"50.50188125803688%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"50.501879995688604%\" y=\"40\" height=\"20\" width=\"1.262348277464298e-06%\" onmouseover=\"document.getElementById('_tp_gkykjngnhbocjbbyxdeo_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_gkykjngnhbocjbbyxdeo_ind_0').style.opacity = 1;document.getElementById('_fb_gkykjngnhbocjbbyxdeo_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gkykjngnhbocjbbyxdeo_ind_0').style.textDecoration = 'none';document.getElementById('_fs_gkykjngnhbocjbbyxdeo_ind_0').style.opacity = 0;document.getElementById('_fb_gkykjngnhbocjbbyxdeo_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"50.50188125803688%\" y=\"40\" height=\"20\" width=\"6.7822604421508e-08%\" onmouseover=\"document.getElementById('_tp_gkykjngnhbocjbbyxdeo_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_gkykjngnhbocjbbyxdeo_ind_6').style.opacity = 1;document.getElementById('_fb_gkykjngnhbocjbbyxdeo_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gkykjngnhbocjbbyxdeo_ind_6').style.textDecoration = 'none';document.getElementById('_fs_gkykjngnhbocjbbyxdeo_ind_6').style.opacity = 0;document.getElementById('_fb_gkykjngnhbocjbbyxdeo_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_gkykjngnhbocjbbyxdeo_ind_0'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gkykjngnhbocjbbyxdeo_ind_0').style.opacity = 1; document.getElementById('_fs_gkykjngnhbocjbbyxdeo_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gkykjngnhbocjbbyxdeo_ind_0').style.opacity = 0; document.getElementById('_fs_gkykjngnhbocjbbyxdeo_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.015</div\n",
|
|
" ><div id='_tp_gkykjngnhbocjbbyxdeo_ind_1'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.014656367597544035); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gkykjngnhbocjbbyxdeo_ind_1').style.opacity = 1; document.getElementById('_fs_gkykjngnhbocjbbyxdeo_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gkykjngnhbocjbbyxdeo_ind_1').style.opacity = 0; document.getElementById('_fs_gkykjngnhbocjbbyxdeo_ind_1').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.028</div\n",
|
|
" ><div id='_tp_gkykjngnhbocjbbyxdeo_ind_2'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.030421865715983164); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gkykjngnhbocjbbyxdeo_ind_2').style.opacity = 1; document.getElementById('_fs_gkykjngnhbocjbbyxdeo_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gkykjngnhbocjbbyxdeo_ind_2').style.opacity = 0; document.getElementById('_fs_gkykjngnhbocjbbyxdeo_ind_2').style.opacity = 0;\"\n",
|
|
" >didn</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.008</div\n",
|
|
" ><div id='_tp_gkykjngnhbocjbbyxdeo_ind_3'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gkykjngnhbocjbbyxdeo_ind_3').style.opacity = 1; document.getElementById('_fs_gkykjngnhbocjbbyxdeo_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gkykjngnhbocjbbyxdeo_ind_3').style.opacity = 0; document.getElementById('_fs_gkykjngnhbocjbbyxdeo_ind_3').style.opacity = 0;\"\n",
|
|
" >t </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.13</div\n",
|
|
" ><div id='_tp_gkykjngnhbocjbbyxdeo_ind_4'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.14866310160427798); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gkykjngnhbocjbbyxdeo_ind_4').style.opacity = 1; document.getElementById('_fs_gkykjngnhbocjbbyxdeo_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gkykjngnhbocjbbyxdeo_ind_4').style.opacity = 0; document.getElementById('_fs_gkykjngnhbocjbbyxdeo_ind_4').style.opacity = 0;\"\n",
|
|
" >feel </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.199</div\n",
|
|
" ><div id='_tp_gkykjngnhbocjbbyxdeo_ind_5'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.22749059219647463); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gkykjngnhbocjbbyxdeo_ind_5').style.opacity = 1; document.getElementById('_fs_gkykjngnhbocjbbyxdeo_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gkykjngnhbocjbbyxdeo_ind_5').style.opacity = 0; document.getElementById('_fs_gkykjngnhbocjbbyxdeo_ind_5').style.opacity = 0;\"\n",
|
|
" >humiliated</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_gkykjngnhbocjbbyxdeo_ind_6'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gkykjngnhbocjbbyxdeo_ind_6').style.opacity = 1; document.getElementById('_fs_gkykjngnhbocjbbyxdeo_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gkykjngnhbocjbbyxdeo_ind_6').style.opacity = 0; document.getElementById('_fs_gkykjngnhbocjbbyxdeo_ind_6').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_kbnkdgnubmfhigadybkg_output_3_zoom' style='display: none;'><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"41.24701394106812%\" y1=\"33\" x2=\"41.24701394106812%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"41.24701394106812%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.1</text><line x1=\"19.40501268496613%\" y1=\"33\" x2=\"19.40501268496613%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"19.40501268496613%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0</text><line x1=\"63.089015197170106%\" y1=\"33\" x2=\"63.089015197170106%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"63.089015197170106%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.2</text><line x1=\"84.93101645327211%\" y1=\"33\" x2=\"84.93101645327211%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"84.93101645327211%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.3</text><line x1=\"80.32562787632148%\" y1=\"33\" x2=\"80.32562787632148%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"80.32562787632148%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.278915</text><text x=\"80.32562787632148%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.278915</text><text x=\"80.32562787632148%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"19.674369939478396%\" y1=\"33\" x2=\"19.674369939478396%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"19.674369939478396%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.00123321</text><text x=\"19.674369939478396%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.00123321</text><text x=\"19.674369939478396%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">anger</tspan>(inputs)</text><rect x=\"8.333333151316657%\" width=\"11.341036788161741%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"13.54014058129959%\" x2=\"19.674369939478396%\" y1=\"60\" y2=\"60\" id=\"_fb_cqzcoqjvmyeryiuphcrx_ind_2\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"16.607255260388992%\" y=\"71\" font-size=\"12px\" id=\"_fs_cqzcoqjvmyeryiuphcrx_ind_2\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.028</text><svg x=\"13.54014058129959%\" y=\"40\" height=\"20\" width=\"6.134229358178805%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">didn</text> </svg></svg><line x1=\"10.15679674188394%\" x2=\"13.54014058129959%\" y1=\"60\" y2=\"60\" id=\"_fb_cqzcoqjvmyeryiuphcrx_ind_1\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"11.848468661591767%\" y=\"71\" font-size=\"12px\" id=\"_fs_cqzcoqjvmyeryiuphcrx_ind_1\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.015</text><svg x=\"10.15679674188394%\" y=\"40\" height=\"20\" width=\"3.38334383941565%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"8.333333151316657%\" x2=\"10.15679674188394%\" y1=\"60\" y2=\"60\" id=\"_fb_cqzcoqjvmyeryiuphcrx_ind_3\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"9.245064946600298%\" y=\"71\" font-size=\"12px\" id=\"_fs_cqzcoqjvmyeryiuphcrx_ind_3\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.008</text><svg x=\"8.333333151316657%\" y=\"40\" height=\"20\" width=\"1.8234635905672842%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">t</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"13.54014058129959%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"13.54014058129959%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"13.54014058129959%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"13.54014058129959%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"13.54014058129959%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"13.54014058129959%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"13.54014058129959%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"13.54014058129959%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"10.15679674188394%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"10.15679674188394%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"10.15679674188394%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"10.15679674188394%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"10.15679674188394%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"10.15679674188394%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"10.15679674188394%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"10.15679674188394%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"19.674369939478396%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.333333151316657%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"19.674369939478396%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"13.54014058129959%\" y=\"40\" height=\"20\" width=\"6.134229358178805%\" onmouseover=\"document.getElementById('_tp_cqzcoqjvmyeryiuphcrx_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_cqzcoqjvmyeryiuphcrx_ind_2').style.opacity = 1;document.getElementById('_fb_cqzcoqjvmyeryiuphcrx_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_cqzcoqjvmyeryiuphcrx_ind_2').style.textDecoration = 'none';document.getElementById('_fs_cqzcoqjvmyeryiuphcrx_ind_2').style.opacity = 0;document.getElementById('_fb_cqzcoqjvmyeryiuphcrx_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"13.54014058129959%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"10.15679674188394%\" y=\"40\" height=\"20\" width=\"3.38334383941565%\" onmouseover=\"document.getElementById('_tp_cqzcoqjvmyeryiuphcrx_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_cqzcoqjvmyeryiuphcrx_ind_1').style.opacity = 1;document.getElementById('_fb_cqzcoqjvmyeryiuphcrx_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_cqzcoqjvmyeryiuphcrx_ind_1').style.textDecoration = 'none';document.getElementById('_fs_cqzcoqjvmyeryiuphcrx_ind_1').style.opacity = 0;document.getElementById('_fb_cqzcoqjvmyeryiuphcrx_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"8.333333151316657%\" y=\"40\" height=\"20\" width=\"1.8234635905672842%\" onmouseover=\"document.getElementById('_tp_cqzcoqjvmyeryiuphcrx_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_cqzcoqjvmyeryiuphcrx_ind_3').style.opacity = 1;document.getElementById('_fb_cqzcoqjvmyeryiuphcrx_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_cqzcoqjvmyeryiuphcrx_ind_3').style.textDecoration = 'none';document.getElementById('_fs_cqzcoqjvmyeryiuphcrx_ind_3').style.opacity = 0;document.getElementById('_fb_cqzcoqjvmyeryiuphcrx_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"19.674369939478396%\" width=\"71.99229472500483%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"19.674369939478396%\" x2=\"63.21297372163763%\" y1=\"60\" y2=\"60\" id=\"_fb_cqzcoqjvmyeryiuphcrx_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"41.44367183055802%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_cqzcoqjvmyeryiuphcrx_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.199</text><svg x=\"19.674369939478396%\" y=\"40\" height=\"20\" width=\"43.538603782159235%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">humiliated</text> </svg></svg><line x1=\"63.21297372163763%\" x2=\"91.66665967752732%\" y1=\"60\" y2=\"60\" id=\"_fb_cqzcoqjvmyeryiuphcrx_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"77.43981669958248%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_cqzcoqjvmyeryiuphcrx_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.13</text><svg x=\"63.21297372163763%\" y=\"40\" height=\"20\" width=\"28.45368595588969%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"91.66665967752732%\" x2=\"91.66666441020885%\" y1=\"60\" y2=\"60\" id=\"_fb_cqzcoqjvmyeryiuphcrx_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.66666204386809%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_cqzcoqjvmyeryiuphcrx_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"91.66665967752732%\" y=\"40\" height=\"20\" width=\"4.73268153200479e-06%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><line x1=\"91.66666441020885%\" x2=\"91.66666466448322%\" y1=\"60\" y2=\"60\" id=\"_fb_cqzcoqjvmyeryiuphcrx_ind_6\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.66666453734604%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_cqzcoqjvmyeryiuphcrx_ind_6\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"91.66666441020885%\" y=\"40\" height=\"20\" width=\"2.5427436867175857e-07%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"63.21297372163763%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"63.21297372163763%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"63.21297372163763%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"63.21297372163763%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"63.21297372163763%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"63.21297372163763%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"63.21297372163763%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"63.21297372163763%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.66665967752732%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.66665967752732%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.66665967752732%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.66665967752732%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.66665967752732%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.66665967752732%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.66665967752732%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.66665967752732%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.66666441020885%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.66666441020885%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.66666441020885%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.66666441020885%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.66666441020885%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.66666441020885%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.66666441020885%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.66666441020885%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"19.674369939478396%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66666466448322%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"63.21297372163763%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"19.674369939478396%\" y=\"40\" height=\"20\" width=\"43.538603782159235%\" onmouseover=\"document.getElementById('_tp_cqzcoqjvmyeryiuphcrx_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_cqzcoqjvmyeryiuphcrx_ind_5').style.opacity = 1;document.getElementById('_fb_cqzcoqjvmyeryiuphcrx_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_cqzcoqjvmyeryiuphcrx_ind_5').style.textDecoration = 'none';document.getElementById('_fs_cqzcoqjvmyeryiuphcrx_ind_5').style.opacity = 0;document.getElementById('_fb_cqzcoqjvmyeryiuphcrx_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66665967752732%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"63.21297372163763%\" y=\"40\" height=\"20\" width=\"28.45368595588969%\" onmouseover=\"document.getElementById('_tp_cqzcoqjvmyeryiuphcrx_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_cqzcoqjvmyeryiuphcrx_ind_4').style.opacity = 1;document.getElementById('_fb_cqzcoqjvmyeryiuphcrx_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_cqzcoqjvmyeryiuphcrx_ind_4').style.textDecoration = 'none';document.getElementById('_fs_cqzcoqjvmyeryiuphcrx_ind_4').style.opacity = 0;document.getElementById('_fb_cqzcoqjvmyeryiuphcrx_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66666441020885%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.66665967752732%\" y=\"40\" height=\"20\" width=\"4.73268153200479e-06%\" onmouseover=\"document.getElementById('_tp_cqzcoqjvmyeryiuphcrx_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_cqzcoqjvmyeryiuphcrx_ind_0').style.opacity = 1;document.getElementById('_fb_cqzcoqjvmyeryiuphcrx_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_cqzcoqjvmyeryiuphcrx_ind_0').style.textDecoration = 'none';document.getElementById('_fs_cqzcoqjvmyeryiuphcrx_ind_0').style.opacity = 0;document.getElementById('_fb_cqzcoqjvmyeryiuphcrx_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"91.66666441020885%\" y=\"40\" height=\"20\" width=\"2.5427436867175857e-07%\" onmouseover=\"document.getElementById('_tp_cqzcoqjvmyeryiuphcrx_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_cqzcoqjvmyeryiuphcrx_ind_6').style.opacity = 1;document.getElementById('_fb_cqzcoqjvmyeryiuphcrx_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_cqzcoqjvmyeryiuphcrx_ind_6').style.textDecoration = 'none';document.getElementById('_fs_cqzcoqjvmyeryiuphcrx_ind_6').style.opacity = 0;document.getElementById('_fb_cqzcoqjvmyeryiuphcrx_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_cqzcoqjvmyeryiuphcrx_ind_0'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_cqzcoqjvmyeryiuphcrx_ind_0').style.opacity = 1; document.getElementById('_fs_cqzcoqjvmyeryiuphcrx_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_cqzcoqjvmyeryiuphcrx_ind_0').style.opacity = 0; document.getElementById('_fs_cqzcoqjvmyeryiuphcrx_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.015</div\n",
|
|
" ><div id='_tp_cqzcoqjvmyeryiuphcrx_ind_1'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.06983561101208159); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_cqzcoqjvmyeryiuphcrx_ind_1').style.opacity = 1; document.getElementById('_fs_cqzcoqjvmyeryiuphcrx_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_cqzcoqjvmyeryiuphcrx_ind_1').style.opacity = 0; document.getElementById('_fs_cqzcoqjvmyeryiuphcrx_ind_1').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.028</div\n",
|
|
" ><div id='_tp_cqzcoqjvmyeryiuphcrx_ind_2'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.14078035254505847); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_cqzcoqjvmyeryiuphcrx_ind_2').style.opacity = 1; document.getElementById('_fs_cqzcoqjvmyeryiuphcrx_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_cqzcoqjvmyeryiuphcrx_ind_2').style.opacity = 0; document.getElementById('_fs_cqzcoqjvmyeryiuphcrx_ind_2').style.opacity = 0;\"\n",
|
|
" >didn</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.008</div\n",
|
|
" ><div id='_tp_cqzcoqjvmyeryiuphcrx_ind_3'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.03830461477520289); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_cqzcoqjvmyeryiuphcrx_ind_3').style.opacity = 1; document.getElementById('_fs_cqzcoqjvmyeryiuphcrx_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_cqzcoqjvmyeryiuphcrx_ind_3').style.opacity = 0; document.getElementById('_fs_cqzcoqjvmyeryiuphcrx_ind_3').style.opacity = 0;\"\n",
|
|
" >t </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.13</div\n",
|
|
" ><div id='_tp_cqzcoqjvmyeryiuphcrx_ind_4'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.6531590413943356); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_cqzcoqjvmyeryiuphcrx_ind_4').style.opacity = 1; document.getElementById('_fs_cqzcoqjvmyeryiuphcrx_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_cqzcoqjvmyeryiuphcrx_ind_4').style.opacity = 0; document.getElementById('_fs_cqzcoqjvmyeryiuphcrx_ind_4').style.opacity = 0;\"\n",
|
|
" >feel </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.199</div\n",
|
|
" ><div id='_tp_cqzcoqjvmyeryiuphcrx_ind_5'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 1.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_cqzcoqjvmyeryiuphcrx_ind_5').style.opacity = 1; document.getElementById('_fs_cqzcoqjvmyeryiuphcrx_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_cqzcoqjvmyeryiuphcrx_ind_5').style.opacity = 0; document.getElementById('_fs_cqzcoqjvmyeryiuphcrx_ind_5').style.opacity = 0;\"\n",
|
|
" >humiliated</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_cqzcoqjvmyeryiuphcrx_ind_6'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_cqzcoqjvmyeryiuphcrx_ind_6').style.opacity = 1; document.getElementById('_fs_cqzcoqjvmyeryiuphcrx_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_cqzcoqjvmyeryiuphcrx_ind_6').style.opacity = 0; document.getElementById('_fs_cqzcoqjvmyeryiuphcrx_ind_6').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_kbnkdgnubmfhigadybkg_output_4' style='display: none';><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"48.705281698548966%\" y1=\"33\" x2=\"48.705281698548966%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"48.705281698548966%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.3</text><line x1=\"37.053446541506865%\" y1=\"33\" x2=\"37.053446541506865%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"37.053446541506865%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.1</text><line x1=\"25.40161138446477%\" y1=\"33\" x2=\"25.40161138446477%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"25.40161138446477%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.1</text><line x1=\"13.749776227422668%\" y1=\"33\" x2=\"13.749776227422668%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"13.749776227422668%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.3</text><line x1=\"60.357116855591066%\" y1=\"33\" x2=\"60.357116855591066%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"60.357116855591066%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.5</text><line x1=\"72.00895201263315%\" y1=\"33\" x2=\"72.00895201263315%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"72.00895201263315%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.7</text><line x1=\"83.66078716967526%\" y1=\"33\" x2=\"83.66078716967526%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"83.66078716967526%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.9</text><line x1=\"36.3406269053027%\" y1=\"33\" x2=\"36.3406269053027%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"36.3406269053027%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.0877647</text><text x=\"36.3406269053027%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.0877647</text><text x=\"36.3406269053027%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"31.26520859903806%\" y1=\"33\" x2=\"31.26520859903806%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"31.26520859903806%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.000646759</text><text x=\"31.26520859903806%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.000646759</text><text x=\"31.26520859903806%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">fear</tspan>(inputs)</text><rect x=\"30.375408082706283%\" width=\"0.8898005163317753%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"30.663913310874314%\" x2=\"31.26520859903806%\" y1=\"60\" y2=\"60\" id=\"_fb_tdrhuwirimvhoakjxamy_ind_3\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"30.964560954956188%\" y=\"71\" font-size=\"12px\" id=\"_fs_tdrhuwirimvhoakjxamy_ind_3\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.01</text><svg x=\"30.663913310874314%\" y=\"40\" height=\"20\" width=\"0.6012952881637474%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">t</text> </svg></svg><line x1=\"30.40504079661284%\" x2=\"30.663913310874314%\" y1=\"60\" y2=\"60\" id=\"_fb_tdrhuwirimvhoakjxamy_ind_2\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"30.53447705374358%\" y=\"71\" font-size=\"12px\" id=\"_fs_tdrhuwirimvhoakjxamy_ind_2\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.004</text><svg x=\"30.40504079661284%\" y=\"40\" height=\"20\" width=\"0.25887251426147273%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">didn</text> </svg></svg><line x1=\"30.375408082706283%\" x2=\"30.40504079661284%\" y1=\"60\" y2=\"60\" id=\"_fb_tdrhuwirimvhoakjxamy_ind_1\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"30.390224439659562%\" y=\"71\" font-size=\"12px\" id=\"_fs_tdrhuwirimvhoakjxamy_ind_1\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.001</text><svg x=\"30.375408082706283%\" y=\"40\" height=\"20\" width=\"0.029632713906558195%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"30.663913310874314%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"30.663913310874314%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"30.663913310874314%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"30.663913310874314%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"30.663913310874314%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"30.663913310874314%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"30.663913310874314%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"30.663913310874314%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"30.40504079661284%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"30.40504079661284%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"30.40504079661284%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"30.40504079661284%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"30.40504079661284%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"30.40504079661284%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"30.40504079661284%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"30.40504079661284%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"31.26520859903806%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"30.375408082706283%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"31.26520859903806%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"30.663913310874314%\" y=\"40\" height=\"20\" width=\"0.6012952881637474%\" onmouseover=\"document.getElementById('_tp_tdrhuwirimvhoakjxamy_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_tdrhuwirimvhoakjxamy_ind_3').style.opacity = 1;document.getElementById('_fb_tdrhuwirimvhoakjxamy_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_tdrhuwirimvhoakjxamy_ind_3').style.textDecoration = 'none';document.getElementById('_fs_tdrhuwirimvhoakjxamy_ind_3').style.opacity = 0;document.getElementById('_fb_tdrhuwirimvhoakjxamy_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"30.663913310874314%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"30.40504079661284%\" y=\"40\" height=\"20\" width=\"0.25887251426147273%\" onmouseover=\"document.getElementById('_tp_tdrhuwirimvhoakjxamy_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_tdrhuwirimvhoakjxamy_ind_2').style.opacity = 1;document.getElementById('_fb_tdrhuwirimvhoakjxamy_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_tdrhuwirimvhoakjxamy_ind_2').style.textDecoration = 'none';document.getElementById('_fs_tdrhuwirimvhoakjxamy_ind_2').style.opacity = 0;document.getElementById('_fb_tdrhuwirimvhoakjxamy_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"30.375408082706283%\" y=\"40\" height=\"20\" width=\"0.029632713906558195%\" onmouseover=\"document.getElementById('_tp_tdrhuwirimvhoakjxamy_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_tdrhuwirimvhoakjxamy_ind_1').style.opacity = 1;document.getElementById('_fb_tdrhuwirimvhoakjxamy_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_tdrhuwirimvhoakjxamy_ind_1').style.textDecoration = 'none';document.getElementById('_fs_tdrhuwirimvhoakjxamy_ind_1').style.opacity = 0;document.getElementById('_fb_tdrhuwirimvhoakjxamy_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"31.26520859903806%\" width=\"5.965218822596412%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"31.26520859903806%\" x2=\"35.92825074538776%\" y1=\"60\" y2=\"60\" id=\"_fb_tdrhuwirimvhoakjxamy_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"33.59672967221291%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_tdrhuwirimvhoakjxamy_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.08</text><svg x=\"31.26520859903806%\" y=\"40\" height=\"20\" width=\"4.663042146349696%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">humiliated</text> </svg></svg><line x1=\"35.92825074538776%\" x2=\"37.230427095662066%\" y1=\"60\" y2=\"60\" id=\"_fb_tdrhuwirimvhoakjxamy_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"36.57933892052491%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_tdrhuwirimvhoakjxamy_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.022</text><svg x=\"35.92825074538776%\" y=\"40\" height=\"20\" width=\"1.3021763502743084%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"37.230427095662066%\" x2=\"37.23042733219341%\" y1=\"60\" y2=\"60\" id=\"_fb_tdrhuwirimvhoakjxamy_ind_6\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"37.23042721392774%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_tdrhuwirimvhoakjxamy_ind_6\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"37.230427095662066%\" y=\"40\" height=\"20\" width=\"2.3653134206824689e-07%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><line x1=\"37.23042733219341%\" x2=\"37.230427421634474%\" y1=\"60\" y2=\"60\" id=\"_fb_tdrhuwirimvhoakjxamy_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"37.23042737691394%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_tdrhuwirimvhoakjxamy_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"37.23042733219341%\" y=\"40\" height=\"20\" width=\"8.944106610897506e-08%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"35.92825074538776%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"35.92825074538776%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"35.92825074538776%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"35.92825074538776%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"35.92825074538776%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"35.92825074538776%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"35.92825074538776%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"35.92825074538776%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"37.230427095662066%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"37.230427095662066%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"37.230427095662066%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"37.230427095662066%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"37.230427095662066%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"37.230427095662066%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"37.230427095662066%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"37.230427095662066%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"37.23042733219341%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"37.23042733219341%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"37.23042733219341%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"37.23042733219341%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"37.23042733219341%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"37.23042733219341%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"37.23042733219341%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"37.23042733219341%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"31.26520859903806%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"37.230427421634474%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"35.92825074538776%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"31.26520859903806%\" y=\"40\" height=\"20\" width=\"4.663042146349696%\" onmouseover=\"document.getElementById('_tp_tdrhuwirimvhoakjxamy_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_tdrhuwirimvhoakjxamy_ind_5').style.opacity = 1;document.getElementById('_fb_tdrhuwirimvhoakjxamy_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_tdrhuwirimvhoakjxamy_ind_5').style.textDecoration = 'none';document.getElementById('_fs_tdrhuwirimvhoakjxamy_ind_5').style.opacity = 0;document.getElementById('_fb_tdrhuwirimvhoakjxamy_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"37.230427095662066%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"35.92825074538776%\" y=\"40\" height=\"20\" width=\"1.3021763502743084%\" onmouseover=\"document.getElementById('_tp_tdrhuwirimvhoakjxamy_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_tdrhuwirimvhoakjxamy_ind_4').style.opacity = 1;document.getElementById('_fb_tdrhuwirimvhoakjxamy_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_tdrhuwirimvhoakjxamy_ind_4').style.textDecoration = 'none';document.getElementById('_fs_tdrhuwirimvhoakjxamy_ind_4').style.opacity = 0;document.getElementById('_fb_tdrhuwirimvhoakjxamy_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"37.23042733219341%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"37.230427095662066%\" y=\"40\" height=\"20\" width=\"2.3653134206824689e-07%\" onmouseover=\"document.getElementById('_tp_tdrhuwirimvhoakjxamy_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_tdrhuwirimvhoakjxamy_ind_6').style.opacity = 1;document.getElementById('_fb_tdrhuwirimvhoakjxamy_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_tdrhuwirimvhoakjxamy_ind_6').style.textDecoration = 'none';document.getElementById('_fs_tdrhuwirimvhoakjxamy_ind_6').style.opacity = 0;document.getElementById('_fb_tdrhuwirimvhoakjxamy_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"37.23042733219341%\" y=\"40\" height=\"20\" width=\"8.944106610897506e-08%\" onmouseover=\"document.getElementById('_tp_tdrhuwirimvhoakjxamy_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_tdrhuwirimvhoakjxamy_ind_0').style.opacity = 1;document.getElementById('_fb_tdrhuwirimvhoakjxamy_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_tdrhuwirimvhoakjxamy_ind_0').style.textDecoration = 'none';document.getElementById('_fs_tdrhuwirimvhoakjxamy_ind_0').style.opacity = 0;document.getElementById('_fb_tdrhuwirimvhoakjxamy_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_tdrhuwirimvhoakjxamy_ind_0'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_tdrhuwirimvhoakjxamy_ind_0').style.opacity = 1; document.getElementById('_fs_tdrhuwirimvhoakjxamy_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_tdrhuwirimvhoakjxamy_ind_0').style.opacity = 0; document.getElementById('_fs_tdrhuwirimvhoakjxamy_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.001</div\n",
|
|
" ><div id='_tp_tdrhuwirimvhoakjxamy_ind_1'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_tdrhuwirimvhoakjxamy_ind_1').style.opacity = 1; document.getElementById('_fs_tdrhuwirimvhoakjxamy_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_tdrhuwirimvhoakjxamy_ind_1').style.opacity = 0; document.getElementById('_fs_tdrhuwirimvhoakjxamy_ind_1').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.004</div\n",
|
|
" ><div id='_tp_tdrhuwirimvhoakjxamy_ind_2'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_tdrhuwirimvhoakjxamy_ind_2').style.opacity = 1; document.getElementById('_fs_tdrhuwirimvhoakjxamy_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_tdrhuwirimvhoakjxamy_ind_2').style.opacity = 0; document.getElementById('_fs_tdrhuwirimvhoakjxamy_ind_2').style.opacity = 0;\"\n",
|
|
" >didn</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.01</div\n",
|
|
" ><div id='_tp_tdrhuwirimvhoakjxamy_ind_3'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_tdrhuwirimvhoakjxamy_ind_3').style.opacity = 1; document.getElementById('_fs_tdrhuwirimvhoakjxamy_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_tdrhuwirimvhoakjxamy_ind_3').style.opacity = 0; document.getElementById('_fs_tdrhuwirimvhoakjxamy_ind_3').style.opacity = 0;\"\n",
|
|
" >t </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.022</div\n",
|
|
" ><div id='_tp_tdrhuwirimvhoakjxamy_ind_4'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.022539116656763607); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_tdrhuwirimvhoakjxamy_ind_4').style.opacity = 1; document.getElementById('_fs_tdrhuwirimvhoakjxamy_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_tdrhuwirimvhoakjxamy_ind_4').style.opacity = 0; document.getElementById('_fs_tdrhuwirimvhoakjxamy_ind_4').style.opacity = 0;\"\n",
|
|
" >feel </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.08</div\n",
|
|
" ><div id='_tp_tdrhuwirimvhoakjxamy_ind_5'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.08560110913052085); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_tdrhuwirimvhoakjxamy_ind_5').style.opacity = 1; document.getElementById('_fs_tdrhuwirimvhoakjxamy_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_tdrhuwirimvhoakjxamy_ind_5').style.opacity = 0; document.getElementById('_fs_tdrhuwirimvhoakjxamy_ind_5').style.opacity = 0;\"\n",
|
|
" >humiliated</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_tdrhuwirimvhoakjxamy_ind_6'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_tdrhuwirimvhoakjxamy_ind_6').style.opacity = 1; document.getElementById('_fs_tdrhuwirimvhoakjxamy_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_tdrhuwirimvhoakjxamy_ind_6').style.opacity = 0; document.getElementById('_fs_tdrhuwirimvhoakjxamy_ind_6').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_kbnkdgnubmfhigadybkg_output_4_zoom' style='display: none;'><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"47.021379279372304%\" y1=\"33\" x2=\"47.021379279372304%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"47.021379279372304%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.04</text><line x1=\"32.85677745535337%\" y1=\"33\" x2=\"32.85677745535337%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"32.85677745535337%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.02</text><line x1=\"18.692175631334436%\" y1=\"33\" x2=\"18.692175631334436%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"18.692175631334436%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0</text><line x1=\"61.18598110339123%\" y1=\"33\" x2=\"61.18598110339123%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"61.18598110339123%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.06</text><line x1=\"75.35058292741016%\" y1=\"33\" x2=\"75.35058292741016%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"75.35058292741016%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.08</text><line x1=\"89.5151847514291%\" y1=\"33\" x2=\"89.5151847514291%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"89.5151847514291%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.1</text><line x1=\"80.84976322504248%\" y1=\"33\" x2=\"80.84976322504248%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"80.84976322504248%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.0877647</text><text x=\"80.84976322504248%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.0877647</text><text x=\"80.84976322504248%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"19.15022969265661%\" y1=\"33\" x2=\"19.15022969265661%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"19.15022969265661%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.000646759</text><text x=\"19.15022969265661%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.000646759</text><text x=\"19.15022969265661%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">fear</tspan>(inputs)</text><rect x=\"8.333332743141591%\" width=\"10.81689694951502%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"11.840558537250118%\" x2=\"19.15022969265661%\" y1=\"60\" y2=\"60\" id=\"_fb_agypsfqrevlgunrovint_ind_3\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"15.495394114953363%\" y=\"71\" font-size=\"12px\" id=\"_fs_agypsfqrevlgunrovint_ind_3\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.01</text><svg x=\"11.840558537250118%\" y=\"40\" height=\"20\" width=\"7.309671155406491%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">t</text> </svg></svg><line x1=\"8.693564061036385%\" x2=\"11.840558537250118%\" y1=\"60\" y2=\"60\" id=\"_fb_agypsfqrevlgunrovint_ind_2\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"10.26706129914325%\" y=\"71\" font-size=\"12px\" id=\"_fs_agypsfqrevlgunrovint_ind_2\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.004</text><svg x=\"8.693564061036385%\" y=\"40\" height=\"20\" width=\"3.1469944762137327%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">didn</text> </svg></svg><line x1=\"8.333332743141591%\" x2=\"8.693564061036385%\" y1=\"60\" y2=\"60\" id=\"_fb_agypsfqrevlgunrovint_ind_1\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.513448402088988%\" y=\"71\" font-size=\"12px\" id=\"_fs_agypsfqrevlgunrovint_ind_1\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.001</text><svg x=\"8.333332743141591%\" y=\"40\" height=\"20\" width=\"0.3602313178947938%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"11.840558537250118%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"11.840558537250118%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"11.840558537250118%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"11.840558537250118%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"11.840558537250118%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"11.840558537250118%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"11.840558537250118%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"11.840558537250118%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.693564061036385%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.693564061036385%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.693564061036385%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.693564061036385%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.693564061036385%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.693564061036385%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.693564061036385%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.693564061036385%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"19.15022969265661%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.333332743141591%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"19.15022969265661%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"11.840558537250118%\" y=\"40\" height=\"20\" width=\"7.309671155406491%\" onmouseover=\"document.getElementById('_tp_agypsfqrevlgunrovint_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_agypsfqrevlgunrovint_ind_3').style.opacity = 1;document.getElementById('_fb_agypsfqrevlgunrovint_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_agypsfqrevlgunrovint_ind_3').style.textDecoration = 'none';document.getElementById('_fs_agypsfqrevlgunrovint_ind_3').style.opacity = 0;document.getElementById('_fb_agypsfqrevlgunrovint_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"11.840558537250118%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.693564061036385%\" y=\"40\" height=\"20\" width=\"3.1469944762137327%\" onmouseover=\"document.getElementById('_tp_agypsfqrevlgunrovint_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_agypsfqrevlgunrovint_ind_2').style.opacity = 1;document.getElementById('_fb_agypsfqrevlgunrovint_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_agypsfqrevlgunrovint_ind_2').style.textDecoration = 'none';document.getElementById('_fs_agypsfqrevlgunrovint_ind_2').style.opacity = 0;document.getElementById('_fb_agypsfqrevlgunrovint_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"8.333332743141591%\" y=\"40\" height=\"20\" width=\"0.3602313178947938%\" onmouseover=\"document.getElementById('_tp_agypsfqrevlgunrovint_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_agypsfqrevlgunrovint_ind_1').style.opacity = 1;document.getElementById('_fb_agypsfqrevlgunrovint_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_agypsfqrevlgunrovint_ind_1').style.textDecoration = 'none';document.getElementById('_fs_agypsfqrevlgunrovint_ind_1').style.opacity = 0;document.getElementById('_fb_agypsfqrevlgunrovint_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"19.15022969265661%\" width=\"72.5164304819009%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"19.15022969265661%\" x2=\"75.8366953021043%\" y1=\"60\" y2=\"60\" id=\"_fb_agypsfqrevlgunrovint_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"47.493462497380456%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_agypsfqrevlgunrovint_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.08</text><svg x=\"19.15022969265661%\" y=\"40\" height=\"20\" width=\"56.686465609447694%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">humiliated</text> </svg></svg><line x1=\"75.8366953021043%\" x2=\"91.66665621186043%\" y1=\"60\" y2=\"60\" id=\"_fb_agypsfqrevlgunrovint_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"83.75167575698237%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_agypsfqrevlgunrovint_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.022</text><svg x=\"75.8366953021043%\" y=\"40\" height=\"20\" width=\"15.829960909756124%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"91.66665621186043%\" x2=\"91.66665908726353%\" y1=\"60\" y2=\"60\" id=\"_fb_agypsfqrevlgunrovint_ind_6\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.66665764956198%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_agypsfqrevlgunrovint_ind_6\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"91.66665621186043%\" y=\"40\" height=\"20\" width=\"2.875403097846174e-06%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><line x1=\"91.66665908726353%\" x2=\"91.66666017455752%\" y1=\"60\" y2=\"60\" id=\"_fb_agypsfqrevlgunrovint_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.66665963091052%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_agypsfqrevlgunrovint_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"91.66665908726353%\" y=\"40\" height=\"20\" width=\"1.0872939952832894e-06%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"75.8366953021043%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"75.8366953021043%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"75.8366953021043%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"75.8366953021043%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"75.8366953021043%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"75.8366953021043%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"75.8366953021043%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"75.8366953021043%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.66665621186043%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.66665621186043%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.66665621186043%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.66665621186043%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.66665621186043%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.66665621186043%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.66665621186043%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.66665621186043%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.66665908726353%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.66665908726353%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.66665908726353%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.66665908726353%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.66665908726353%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.66665908726353%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.66665908726353%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.66665908726353%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"19.15022969265661%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66666017455752%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"75.8366953021043%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"19.15022969265661%\" y=\"40\" height=\"20\" width=\"56.686465609447694%\" onmouseover=\"document.getElementById('_tp_agypsfqrevlgunrovint_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_agypsfqrevlgunrovint_ind_5').style.opacity = 1;document.getElementById('_fb_agypsfqrevlgunrovint_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_agypsfqrevlgunrovint_ind_5').style.textDecoration = 'none';document.getElementById('_fs_agypsfqrevlgunrovint_ind_5').style.opacity = 0;document.getElementById('_fb_agypsfqrevlgunrovint_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66665621186043%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"75.8366953021043%\" y=\"40\" height=\"20\" width=\"15.829960909756124%\" onmouseover=\"document.getElementById('_tp_agypsfqrevlgunrovint_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_agypsfqrevlgunrovint_ind_4').style.opacity = 1;document.getElementById('_fb_agypsfqrevlgunrovint_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_agypsfqrevlgunrovint_ind_4').style.textDecoration = 'none';document.getElementById('_fs_agypsfqrevlgunrovint_ind_4').style.opacity = 0;document.getElementById('_fb_agypsfqrevlgunrovint_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66665908726353%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.66665621186043%\" y=\"40\" height=\"20\" width=\"2.875403097846174e-06%\" onmouseover=\"document.getElementById('_tp_agypsfqrevlgunrovint_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_agypsfqrevlgunrovint_ind_6').style.opacity = 1;document.getElementById('_fb_agypsfqrevlgunrovint_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_agypsfqrevlgunrovint_ind_6').style.textDecoration = 'none';document.getElementById('_fs_agypsfqrevlgunrovint_ind_6').style.opacity = 0;document.getElementById('_fb_agypsfqrevlgunrovint_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"91.66665908726353%\" y=\"40\" height=\"20\" width=\"1.0872939952832894e-06%\" onmouseover=\"document.getElementById('_tp_agypsfqrevlgunrovint_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_agypsfqrevlgunrovint_ind_0').style.opacity = 1;document.getElementById('_fb_agypsfqrevlgunrovint_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_agypsfqrevlgunrovint_ind_0').style.textDecoration = 'none';document.getElementById('_fs_agypsfqrevlgunrovint_ind_0').style.opacity = 0;document.getElementById('_fb_agypsfqrevlgunrovint_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_agypsfqrevlgunrovint_ind_0'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_agypsfqrevlgunrovint_ind_0').style.opacity = 1; document.getElementById('_fs_agypsfqrevlgunrovint_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_agypsfqrevlgunrovint_ind_0').style.opacity = 0; document.getElementById('_fs_agypsfqrevlgunrovint_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.001</div\n",
|
|
" ><div id='_tp_agypsfqrevlgunrovint_ind_1'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_agypsfqrevlgunrovint_ind_1').style.opacity = 1; document.getElementById('_fs_agypsfqrevlgunrovint_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_agypsfqrevlgunrovint_ind_1').style.opacity = 0; document.getElementById('_fs_agypsfqrevlgunrovint_ind_1').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.004</div\n",
|
|
" ><div id='_tp_agypsfqrevlgunrovint_ind_2'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.05407011289364243); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_agypsfqrevlgunrovint_ind_2').style.opacity = 1; document.getElementById('_fs_agypsfqrevlgunrovint_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_agypsfqrevlgunrovint_ind_2').style.opacity = 0; document.getElementById('_fs_agypsfqrevlgunrovint_ind_2').style.opacity = 0;\"\n",
|
|
" >didn</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.01</div\n",
|
|
" ><div id='_tp_agypsfqrevlgunrovint_ind_3'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.12501485442661908); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_agypsfqrevlgunrovint_ind_3').style.opacity = 1; document.getElementById('_fs_agypsfqrevlgunrovint_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_agypsfqrevlgunrovint_ind_3').style.opacity = 0; document.getElementById('_fs_agypsfqrevlgunrovint_ind_3').style.opacity = 0;\"\n",
|
|
" >t </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.022</div\n",
|
|
" ><div id='_tp_agypsfqrevlgunrovint_ind_4'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.27478708655179246); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_agypsfqrevlgunrovint_ind_4').style.opacity = 1; document.getElementById('_fs_agypsfqrevlgunrovint_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_agypsfqrevlgunrovint_ind_4').style.opacity = 0; document.getElementById('_fs_agypsfqrevlgunrovint_ind_4').style.opacity = 0;\"\n",
|
|
" >feel </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.08</div\n",
|
|
" ><div id='_tp_agypsfqrevlgunrovint_ind_5'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 1.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_agypsfqrevlgunrovint_ind_5').style.opacity = 1; document.getElementById('_fs_agypsfqrevlgunrovint_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_agypsfqrevlgunrovint_ind_5').style.opacity = 0; document.getElementById('_fs_agypsfqrevlgunrovint_ind_5').style.opacity = 0;\"\n",
|
|
" >humiliated</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_agypsfqrevlgunrovint_ind_6'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_agypsfqrevlgunrovint_ind_6').style.opacity = 1; document.getElementById('_fs_agypsfqrevlgunrovint_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_agypsfqrevlgunrovint_ind_6').style.opacity = 0; document.getElementById('_fs_agypsfqrevlgunrovint_ind_6').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_kbnkdgnubmfhigadybkg_output_5' style='display: none';><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"48.705281698548966%\" y1=\"33\" x2=\"48.705281698548966%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"48.705281698548966%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.3</text><line x1=\"37.053446541506865%\" y1=\"33\" x2=\"37.053446541506865%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"37.053446541506865%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.1</text><line x1=\"25.40161138446477%\" y1=\"33\" x2=\"25.40161138446477%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"25.40161138446477%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.1</text><line x1=\"13.749776227422668%\" y1=\"33\" x2=\"13.749776227422668%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"13.749776227422668%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.3</text><line x1=\"60.357116855591066%\" y1=\"33\" x2=\"60.357116855591066%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"60.357116855591066%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.5</text><line x1=\"72.00895201263315%\" y1=\"33\" x2=\"72.00895201263315%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"72.00895201263315%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.7</text><line x1=\"83.66078716967526%\" y1=\"33\" x2=\"83.66078716967526%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"83.66078716967526%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.9</text><line x1=\"41.25726890758398%\" y1=\"33\" x2=\"41.25726890758398%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"41.25726890758398%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.172157</text><text x=\"41.25726890758398%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.172157</text><text x=\"41.25726890758398%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"31.24980318896666%\" y1=\"33\" x2=\"31.24980318896666%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"31.24980318896666%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.00038233</text><text x=\"31.24980318896666%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.00038233</text><text x=\"31.24980318896666%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">surprise</tspan>(inputs)</text><rect x=\"31.24980318896666%\" width=\"0.0%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><rect transform=\"translate(-8,0)\" x=\"31.24980318896666%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"31.24980318896666%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><rect x=\"31.24980318896666%\" width=\"10.007465718617311%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"31.24980318896666%\" x2=\"37.357813176693696%\" y1=\"60\" y2=\"60\" id=\"_fb_gogycpafjmotconeafki_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"34.30380818283018%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_gogycpafjmotconeafki_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.105</text><svg x=\"31.24980318896666%\" y=\"40\" height=\"20\" width=\"6.108009987727037%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">humiliated</text> </svg></svg><line x1=\"37.357813176693696%\" x2=\"38.694300159584635%\" y1=\"60\" y2=\"60\" id=\"_fb_gogycpafjmotconeafki_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"38.02605666813916%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_gogycpafjmotconeafki_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.023</text><svg x=\"37.357813176693696%\" y=\"40\" height=\"20\" width=\"1.3364869828909391%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">didn</text> </svg></svg><line x1=\"38.694300159584635%\" x2=\"39.90340454731399%\" y1=\"60\" y2=\"60\" id=\"_fb_gogycpafjmotconeafki_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"39.29885235344931%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_gogycpafjmotconeafki_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.021</text><svg x=\"38.694300159584635%\" y=\"40\" height=\"20\" width=\"1.2091043877293544%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">t</text> </svg></svg><line x1=\"39.90340454731399%\" x2=\"41.09951972696421%\" y1=\"60\" y2=\"60\" id=\"_fb_gogycpafjmotconeafki_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"40.5014621371391%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_gogycpafjmotconeafki_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.021</text><svg x=\"39.90340454731399%\" y=\"40\" height=\"20\" width=\"1.1961151796502207%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"41.09951972696421%\" x2=\"41.25726694857036%\" y1=\"60\" y2=\"60\" id=\"_fb_gogycpafjmotconeafki_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"41.17839333776729%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_gogycpafjmotconeafki_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.003</text><svg x=\"41.09951972696421%\" y=\"40\" height=\"20\" width=\"0.15774722160615084%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"41.25726694857036%\" x2=\"41.257268261361695%\" y1=\"60\" y2=\"60\" id=\"_fb_gogycpafjmotconeafki_ind_6\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"41.25726760496603%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_gogycpafjmotconeafki_ind_6\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"41.25726694857036%\" y=\"40\" height=\"20\" width=\"1.3127913334187724e-06%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><line x1=\"41.257268261361695%\" x2=\"41.25726890758398%\" y1=\"60\" y2=\"60\" id=\"_fb_gogycpafjmotconeafki_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"41.25726858447284%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_gogycpafjmotconeafki_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"41.257268261361695%\" y=\"40\" height=\"20\" width=\"6.46222282796316e-07%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"37.357813176693696%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"37.357813176693696%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"37.357813176693696%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"37.357813176693696%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"37.357813176693696%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"37.357813176693696%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"37.357813176693696%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"37.357813176693696%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"38.694300159584635%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"38.694300159584635%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"38.694300159584635%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"38.694300159584635%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"38.694300159584635%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"38.694300159584635%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"38.694300159584635%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"38.694300159584635%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"39.90340454731399%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"39.90340454731399%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"39.90340454731399%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"39.90340454731399%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"39.90340454731399%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"39.90340454731399%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"39.90340454731399%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"39.90340454731399%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"41.09951972696421%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"41.09951972696421%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"41.09951972696421%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"41.09951972696421%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"41.09951972696421%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"41.09951972696421%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"41.09951972696421%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"41.09951972696421%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"41.25726694857036%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"41.25726694857036%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"41.25726694857036%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"41.25726694857036%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"41.25726694857036%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"41.25726694857036%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"41.25726694857036%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"41.25726694857036%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"41.257268261361695%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"41.257268261361695%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"41.257268261361695%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"41.257268261361695%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"41.257268261361695%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"41.257268261361695%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"41.257268261361695%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"41.257268261361695%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"31.24980318896666%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"41.25726890758398%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"37.357813176693696%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"31.24980318896666%\" y=\"40\" height=\"20\" width=\"6.108009987727037%\" onmouseover=\"document.getElementById('_tp_gogycpafjmotconeafki_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_gogycpafjmotconeafki_ind_5').style.opacity = 1;document.getElementById('_fb_gogycpafjmotconeafki_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gogycpafjmotconeafki_ind_5').style.textDecoration = 'none';document.getElementById('_fs_gogycpafjmotconeafki_ind_5').style.opacity = 0;document.getElementById('_fb_gogycpafjmotconeafki_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"38.694300159584635%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"37.357813176693696%\" y=\"40\" height=\"20\" width=\"1.3364869828909391%\" onmouseover=\"document.getElementById('_tp_gogycpafjmotconeafki_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_gogycpafjmotconeafki_ind_2').style.opacity = 1;document.getElementById('_fb_gogycpafjmotconeafki_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gogycpafjmotconeafki_ind_2').style.textDecoration = 'none';document.getElementById('_fs_gogycpafjmotconeafki_ind_2').style.opacity = 0;document.getElementById('_fb_gogycpafjmotconeafki_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"39.90340454731399%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"38.694300159584635%\" y=\"40\" height=\"20\" width=\"1.2091043877293544%\" onmouseover=\"document.getElementById('_tp_gogycpafjmotconeafki_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_gogycpafjmotconeafki_ind_3').style.opacity = 1;document.getElementById('_fb_gogycpafjmotconeafki_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gogycpafjmotconeafki_ind_3').style.textDecoration = 'none';document.getElementById('_fs_gogycpafjmotconeafki_ind_3').style.opacity = 0;document.getElementById('_fb_gogycpafjmotconeafki_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"41.09951972696421%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"39.90340454731399%\" y=\"40\" height=\"20\" width=\"1.1961151796502207%\" onmouseover=\"document.getElementById('_tp_gogycpafjmotconeafki_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_gogycpafjmotconeafki_ind_4').style.opacity = 1;document.getElementById('_fb_gogycpafjmotconeafki_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gogycpafjmotconeafki_ind_4').style.textDecoration = 'none';document.getElementById('_fs_gogycpafjmotconeafki_ind_4').style.opacity = 0;document.getElementById('_fb_gogycpafjmotconeafki_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"41.25726694857036%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"41.09951972696421%\" y=\"40\" height=\"20\" width=\"0.15774722160615084%\" onmouseover=\"document.getElementById('_tp_gogycpafjmotconeafki_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_gogycpafjmotconeafki_ind_1').style.opacity = 1;document.getElementById('_fb_gogycpafjmotconeafki_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gogycpafjmotconeafki_ind_1').style.textDecoration = 'none';document.getElementById('_fs_gogycpafjmotconeafki_ind_1').style.opacity = 0;document.getElementById('_fb_gogycpafjmotconeafki_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"41.257268261361695%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"41.25726694857036%\" y=\"40\" height=\"20\" width=\"1.3127913334187724e-06%\" onmouseover=\"document.getElementById('_tp_gogycpafjmotconeafki_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_gogycpafjmotconeafki_ind_6').style.opacity = 1;document.getElementById('_fb_gogycpafjmotconeafki_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gogycpafjmotconeafki_ind_6').style.textDecoration = 'none';document.getElementById('_fs_gogycpafjmotconeafki_ind_6').style.opacity = 0;document.getElementById('_fb_gogycpafjmotconeafki_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"41.257268261361695%\" y=\"40\" height=\"20\" width=\"6.46222282796316e-07%\" onmouseover=\"document.getElementById('_tp_gogycpafjmotconeafki_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_gogycpafjmotconeafki_ind_0').style.opacity = 1;document.getElementById('_fb_gogycpafjmotconeafki_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gogycpafjmotconeafki_ind_0').style.textDecoration = 'none';document.getElementById('_fs_gogycpafjmotconeafki_ind_0').style.opacity = 0;document.getElementById('_fb_gogycpafjmotconeafki_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_gogycpafjmotconeafki_ind_0'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gogycpafjmotconeafki_ind_0').style.opacity = 1; document.getElementById('_fs_gogycpafjmotconeafki_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gogycpafjmotconeafki_ind_0').style.opacity = 0; document.getElementById('_fs_gogycpafjmotconeafki_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.003</div\n",
|
|
" ><div id='_tp_gogycpafjmotconeafki_ind_1'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gogycpafjmotconeafki_ind_1').style.opacity = 1; document.getElementById('_fs_gogycpafjmotconeafki_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gogycpafjmotconeafki_ind_1').style.opacity = 0; document.getElementById('_fs_gogycpafjmotconeafki_ind_1').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.023</div\n",
|
|
" ><div id='_tp_gogycpafjmotconeafki_ind_2'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.022539116656763607); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gogycpafjmotconeafki_ind_2').style.opacity = 1; document.getElementById('_fs_gogycpafjmotconeafki_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gogycpafjmotconeafki_ind_2').style.opacity = 0; document.getElementById('_fs_gogycpafjmotconeafki_ind_2').style.opacity = 0;\"\n",
|
|
" >didn</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.021</div\n",
|
|
" ><div id='_tp_gogycpafjmotconeafki_ind_3'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.022539116656763607); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gogycpafjmotconeafki_ind_3').style.opacity = 1; document.getElementById('_fs_gogycpafjmotconeafki_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gogycpafjmotconeafki_ind_3').style.opacity = 0; document.getElementById('_fs_gogycpafjmotconeafki_ind_3').style.opacity = 0;\"\n",
|
|
" >t </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.021</div\n",
|
|
" ><div id='_tp_gogycpafjmotconeafki_ind_4'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.022539116656763607); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gogycpafjmotconeafki_ind_4').style.opacity = 1; document.getElementById('_fs_gogycpafjmotconeafki_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gogycpafjmotconeafki_ind_4').style.opacity = 0; document.getElementById('_fs_gogycpafjmotconeafki_ind_4').style.opacity = 0;\"\n",
|
|
" >feel </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.105</div\n",
|
|
" ><div id='_tp_gogycpafjmotconeafki_ind_5'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.11713210536739943); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gogycpafjmotconeafki_ind_5').style.opacity = 1; document.getElementById('_fs_gogycpafjmotconeafki_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gogycpafjmotconeafki_ind_5').style.opacity = 0; document.getElementById('_fs_gogycpafjmotconeafki_ind_5').style.opacity = 0;\"\n",
|
|
" >humiliated</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_gogycpafjmotconeafki_ind_6'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gogycpafjmotconeafki_ind_6').style.opacity = 1; document.getElementById('_fs_gogycpafjmotconeafki_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gogycpafjmotconeafki_ind_6').style.opacity = 0; document.getElementById('_fs_gogycpafjmotconeafki_ind_6').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_kbnkdgnubmfhigadybkg_output_5_zoom' style='display: none;'><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"51.809635922913124%\" y1=\"33\" x2=\"51.809635922913124%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"51.809635922913124%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.09</text><line x1=\"37.255708236082356%\" y1=\"33\" x2=\"37.255708236082356%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"37.255708236082356%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.06</text><line x1=\"22.701780549251584%\" y1=\"33\" x2=\"22.701780549251584%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"22.701780549251584%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.03</text><line x1=\"8.147852862420812%\" y1=\"33\" x2=\"8.147852862420812%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"8.147852862420812%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0</text><line x1=\"66.36356360974389%\" y1=\"33\" x2=\"66.36356360974389%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"66.36356360974389%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.12</text><line x1=\"80.91749129657467%\" y1=\"33\" x2=\"80.91749129657467%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"80.91749129657467%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.15</text><line x1=\"91.66666221963321%\" y1=\"33\" x2=\"91.66666221963321%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"91.66666221963321%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.172157</text><text x=\"91.66666221963321%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.172157</text><text x=\"91.66666221963321%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"8.333332929057564%\" y1=\"33\" x2=\"8.333332929057564%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"8.333332929057564%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.00038233</text><text x=\"8.333332929057564%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.00038233</text><text x=\"8.333332929057564%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">surprise</tspan>(inputs)</text><rect x=\"8.333332929057564%\" width=\"0.0%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><rect transform=\"translate(-8,0)\" x=\"8.333332929057564%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.333332929057564%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><rect x=\"8.333332929057564%\" width=\"83.33332929057565%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"8.333332929057564%\" x2=\"59.19544147172949%\" y1=\"60\" y2=\"60\" id=\"_fb_rnaywxjaotdscttoedqg_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"33.76438720039353%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rnaywxjaotdscttoedqg_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.105</text><svg x=\"8.333332929057564%\" y=\"40\" height=\"20\" width=\"50.862108542671926%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">humiliated</text> </svg></svg><line x1=\"59.19544147172949%\" x2=\"70.32452379580126%\" y1=\"60\" y2=\"60\" id=\"_fb_rnaywxjaotdscttoedqg_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"64.75998263376538%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rnaywxjaotdscttoedqg_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.023</text><svg x=\"59.19544147172949%\" y=\"40\" height=\"20\" width=\"11.129082324071767%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">didn</text> </svg></svg><line x1=\"70.32452379580126%\" x2=\"80.39287645594426%\" y1=\"60\" y2=\"60\" id=\"_fb_rnaywxjaotdscttoedqg_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"75.35870012587276%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rnaywxjaotdscttoedqg_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.021</text><svg x=\"70.32452379580126%\" y=\"40\" height=\"20\" width=\"10.068352660143006%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">t</text> </svg></svg><line x1=\"80.39287645594426%\" x2=\"90.35306647186567%\" y1=\"60\" y2=\"60\" id=\"_fb_rnaywxjaotdscttoedqg_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"85.37297146390497%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rnaywxjaotdscttoedqg_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.021</text><svg x=\"80.39287645594426%\" y=\"40\" height=\"20\" width=\"9.960190015921413%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"90.35306647186567%\" x2=\"91.66664590669933%\" y1=\"60\" y2=\"60\" id=\"_fb_rnaywxjaotdscttoedqg_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.0098561892825%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rnaywxjaotdscttoedqg_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.003</text><svg x=\"90.35306647186567%\" y=\"40\" height=\"20\" width=\"1.313579434833656%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"91.66664590669933%\" x2=\"91.66665683846526%\" y1=\"60\" y2=\"60\" id=\"_fb_rnaywxjaotdscttoedqg_ind_6\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.6666513725823%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rnaywxjaotdscttoedqg_ind_6\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"91.66664590669933%\" y=\"40\" height=\"20\" width=\"1.093176592803502e-05%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><line x1=\"91.66665683846526%\" x2=\"91.66666221963321%\" y1=\"60\" y2=\"60\" id=\"_fb_rnaywxjaotdscttoedqg_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.66665952904924%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rnaywxjaotdscttoedqg_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"91.66665683846526%\" y=\"40\" height=\"20\" width=\"5.381167952123178e-06%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"59.19544147172949%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"59.19544147172949%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"59.19544147172949%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"59.19544147172949%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"59.19544147172949%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"59.19544147172949%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"59.19544147172949%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"59.19544147172949%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"70.32452379580126%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"70.32452379580126%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"70.32452379580126%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"70.32452379580126%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"70.32452379580126%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"70.32452379580126%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"70.32452379580126%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"70.32452379580126%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"80.39287645594426%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"80.39287645594426%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"80.39287645594426%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"80.39287645594426%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"80.39287645594426%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"80.39287645594426%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"80.39287645594426%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"80.39287645594426%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"90.35306647186567%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.35306647186567%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.35306647186567%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.35306647186567%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.35306647186567%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.35306647186567%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.35306647186567%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.35306647186567%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.66664590669933%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.66664590669933%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.66664590669933%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.66664590669933%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.66664590669933%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.66664590669933%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.66664590669933%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.66664590669933%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.66665683846526%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.66665683846526%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.66665683846526%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.66665683846526%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.66665683846526%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.66665683846526%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.66665683846526%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.66665683846526%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"8.333332929057564%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66666221963321%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"59.19544147172949%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"8.333332929057564%\" y=\"40\" height=\"20\" width=\"50.862108542671926%\" onmouseover=\"document.getElementById('_tp_rnaywxjaotdscttoedqg_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_rnaywxjaotdscttoedqg_ind_5').style.opacity = 1;document.getElementById('_fb_rnaywxjaotdscttoedqg_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rnaywxjaotdscttoedqg_ind_5').style.textDecoration = 'none';document.getElementById('_fs_rnaywxjaotdscttoedqg_ind_5').style.opacity = 0;document.getElementById('_fb_rnaywxjaotdscttoedqg_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"70.32452379580126%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"59.19544147172949%\" y=\"40\" height=\"20\" width=\"11.129082324071767%\" onmouseover=\"document.getElementById('_tp_rnaywxjaotdscttoedqg_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_rnaywxjaotdscttoedqg_ind_2').style.opacity = 1;document.getElementById('_fb_rnaywxjaotdscttoedqg_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rnaywxjaotdscttoedqg_ind_2').style.textDecoration = 'none';document.getElementById('_fs_rnaywxjaotdscttoedqg_ind_2').style.opacity = 0;document.getElementById('_fb_rnaywxjaotdscttoedqg_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"80.39287645594426%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"70.32452379580126%\" y=\"40\" height=\"20\" width=\"10.068352660143006%\" onmouseover=\"document.getElementById('_tp_rnaywxjaotdscttoedqg_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_rnaywxjaotdscttoedqg_ind_3').style.opacity = 1;document.getElementById('_fb_rnaywxjaotdscttoedqg_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rnaywxjaotdscttoedqg_ind_3').style.textDecoration = 'none';document.getElementById('_fs_rnaywxjaotdscttoedqg_ind_3').style.opacity = 0;document.getElementById('_fb_rnaywxjaotdscttoedqg_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"90.35306647186567%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"80.39287645594426%\" y=\"40\" height=\"20\" width=\"9.960190015921413%\" onmouseover=\"document.getElementById('_tp_rnaywxjaotdscttoedqg_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_rnaywxjaotdscttoedqg_ind_4').style.opacity = 1;document.getElementById('_fb_rnaywxjaotdscttoedqg_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rnaywxjaotdscttoedqg_ind_4').style.textDecoration = 'none';document.getElementById('_fs_rnaywxjaotdscttoedqg_ind_4').style.opacity = 0;document.getElementById('_fb_rnaywxjaotdscttoedqg_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66664590669933%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"90.35306647186567%\" y=\"40\" height=\"20\" width=\"1.313579434833656%\" onmouseover=\"document.getElementById('_tp_rnaywxjaotdscttoedqg_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_rnaywxjaotdscttoedqg_ind_1').style.opacity = 1;document.getElementById('_fb_rnaywxjaotdscttoedqg_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rnaywxjaotdscttoedqg_ind_1').style.textDecoration = 'none';document.getElementById('_fs_rnaywxjaotdscttoedqg_ind_1').style.opacity = 0;document.getElementById('_fb_rnaywxjaotdscttoedqg_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66665683846526%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.66664590669933%\" y=\"40\" height=\"20\" width=\"1.093176592803502e-05%\" onmouseover=\"document.getElementById('_tp_rnaywxjaotdscttoedqg_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_rnaywxjaotdscttoedqg_ind_6').style.opacity = 1;document.getElementById('_fb_rnaywxjaotdscttoedqg_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rnaywxjaotdscttoedqg_ind_6').style.textDecoration = 'none';document.getElementById('_fs_rnaywxjaotdscttoedqg_ind_6').style.opacity = 0;document.getElementById('_fb_rnaywxjaotdscttoedqg_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"91.66665683846526%\" y=\"40\" height=\"20\" width=\"5.381167952123178e-06%\" onmouseover=\"document.getElementById('_tp_rnaywxjaotdscttoedqg_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_rnaywxjaotdscttoedqg_ind_0').style.opacity = 1;document.getElementById('_fb_rnaywxjaotdscttoedqg_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rnaywxjaotdscttoedqg_ind_0').style.textDecoration = 'none';document.getElementById('_fs_rnaywxjaotdscttoedqg_ind_0').style.opacity = 0;document.getElementById('_fb_rnaywxjaotdscttoedqg_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_rnaywxjaotdscttoedqg_ind_0'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_rnaywxjaotdscttoedqg_ind_0').style.opacity = 1; document.getElementById('_fs_rnaywxjaotdscttoedqg_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_rnaywxjaotdscttoedqg_ind_0').style.opacity = 0; document.getElementById('_fs_rnaywxjaotdscttoedqg_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.003</div\n",
|
|
" ><div id='_tp_rnaywxjaotdscttoedqg_ind_1'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.022539116656763607); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_rnaywxjaotdscttoedqg_ind_1').style.opacity = 1; document.getElementById('_fs_rnaywxjaotdscttoedqg_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_rnaywxjaotdscttoedqg_ind_1').style.opacity = 0; document.getElementById('_fs_rnaywxjaotdscttoedqg_ind_1').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.023</div\n",
|
|
" ><div id='_tp_rnaywxjaotdscttoedqg_ind_2'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.21960784313725487); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_rnaywxjaotdscttoedqg_ind_2').style.opacity = 1; document.getElementById('_fs_rnaywxjaotdscttoedqg_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_rnaywxjaotdscttoedqg_ind_2').style.opacity = 0; document.getElementById('_fs_rnaywxjaotdscttoedqg_ind_2').style.opacity = 0;\"\n",
|
|
" >didn</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.021</div\n",
|
|
" ><div id='_tp_rnaywxjaotdscttoedqg_ind_3'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.1959595959595959); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_rnaywxjaotdscttoedqg_ind_3').style.opacity = 1; document.getElementById('_fs_rnaywxjaotdscttoedqg_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_rnaywxjaotdscttoedqg_ind_3').style.opacity = 0; document.getElementById('_fs_rnaywxjaotdscttoedqg_ind_3').style.opacity = 0;\"\n",
|
|
" >t </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.021</div\n",
|
|
" ><div id='_tp_rnaywxjaotdscttoedqg_ind_4'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.1959595959595959); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_rnaywxjaotdscttoedqg_ind_4').style.opacity = 1; document.getElementById('_fs_rnaywxjaotdscttoedqg_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_rnaywxjaotdscttoedqg_ind_4').style.opacity = 0; document.getElementById('_fs_rnaywxjaotdscttoedqg_ind_4').style.opacity = 0;\"\n",
|
|
" >feel </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.105</div\n",
|
|
" ><div id='_tp_rnaywxjaotdscttoedqg_ind_5'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 1.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_rnaywxjaotdscttoedqg_ind_5').style.opacity = 1; document.getElementById('_fs_rnaywxjaotdscttoedqg_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_rnaywxjaotdscttoedqg_ind_5').style.opacity = 0; document.getElementById('_fs_rnaywxjaotdscttoedqg_ind_5').style.opacity = 0;\"\n",
|
|
" >humiliated</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_rnaywxjaotdscttoedqg_ind_6'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_rnaywxjaotdscttoedqg_ind_6').style.opacity = 1; document.getElementById('_fs_rnaywxjaotdscttoedqg_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_rnaywxjaotdscttoedqg_ind_6').style.opacity = 0; document.getElementById('_fs_rnaywxjaotdscttoedqg_ind_6').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div></div>"
|
|
],
|
|
"text/plain": [
|
|
"<IPython.core.display.HTML object>"
|
|
]
|
|
},
|
|
"metadata": {},
|
|
"output_type": "display_data"
|
|
},
|
|
{
|
|
"data": {
|
|
"text/html": [
|
|
"\n",
|
|
"<br>\n",
|
|
"<hr style=\"height: 1px; background-color: #fff; border: none; margin-top: 18px; margin-bottom: 18px; border-top: 1px dashed #ccc;\"\">\n",
|
|
"<div align=\"center\" style=\"margin-top: -35px;\"><div style=\"display: inline-block; background: #fff; padding: 5px; color: #999; font-family: monospace\">[1]</div>\n",
|
|
"</div>\n",
|
|
" "
|
|
],
|
|
"text/plain": [
|
|
"<IPython.core.display.HTML object>"
|
|
]
|
|
},
|
|
"metadata": {},
|
|
"output_type": "display_data"
|
|
},
|
|
{
|
|
"data": {
|
|
"text/html": [
|
|
"<div align='center'>\n",
|
|
"<script>\n",
|
|
" document._hover_mqwalcomvemcxolagrxb = '_tp_mqwalcomvemcxolagrxb_output_0';\n",
|
|
" document._zoom_mqwalcomvemcxolagrxb = undefined;\n",
|
|
" function _output_onclick_mqwalcomvemcxolagrxb(i) {\n",
|
|
" var next_id = undefined;\n",
|
|
" \n",
|
|
" if (document._zoom_mqwalcomvemcxolagrxb !== undefined) {\n",
|
|
" document.getElementById(document._zoom_mqwalcomvemcxolagrxb+ '_zoom').style.display = 'none';\n",
|
|
" \n",
|
|
" if (document._zoom_mqwalcomvemcxolagrxb === '_tp_mqwalcomvemcxolagrxb_output_' + i) {\n",
|
|
" document.getElementById(document._zoom_mqwalcomvemcxolagrxb).style.display = 'block';\n",
|
|
" document.getElementById(document._zoom_mqwalcomvemcxolagrxb+'_name').style.background = '#dddddd';\n",
|
|
" } else {\n",
|
|
" document.getElementById(document._zoom_mqwalcomvemcxolagrxb).style.display = 'none';\n",
|
|
" document.getElementById(document._zoom_mqwalcomvemcxolagrxb+'_name').style.background = '#ffffff';\n",
|
|
" }\n",
|
|
" }\n",
|
|
" if (document._zoom_mqwalcomvemcxolagrxb !== '_tp_mqwalcomvemcxolagrxb_output_' + i) {\n",
|
|
" next_id = '_tp_mqwalcomvemcxolagrxb_output_' + i;\n",
|
|
" document.getElementById(next_id).style.display = 'none';\n",
|
|
" document.getElementById(next_id + '_zoom').style.display = 'block';\n",
|
|
" document.getElementById(next_id+'_name').style.background = '#bbbbbb';\n",
|
|
" }\n",
|
|
" document._zoom_mqwalcomvemcxolagrxb = next_id;\n",
|
|
" }\n",
|
|
" function _output_onmouseover_mqwalcomvemcxolagrxb(i, el) {\n",
|
|
" if (document._zoom_mqwalcomvemcxolagrxb !== undefined) { return; }\n",
|
|
" if (document._hover_mqwalcomvemcxolagrxb !== undefined) {\n",
|
|
" document.getElementById(document._hover_mqwalcomvemcxolagrxb + '_name').style.background = '#ffffff';\n",
|
|
" document.getElementById(document._hover_mqwalcomvemcxolagrxb).style.display = 'none';\n",
|
|
" }\n",
|
|
" document.getElementById('_tp_mqwalcomvemcxolagrxb_output_' + i).style.display = 'block';\n",
|
|
" el.style.background = '#dddddd';\n",
|
|
" document._hover_mqwalcomvemcxolagrxb = '_tp_mqwalcomvemcxolagrxb_output_' + i;\n",
|
|
" }\n",
|
|
"</script>\n",
|
|
"<div style=\"color: rgb(120,120,120); font-size: 12px;\">outputs</div>\n",
|
|
"<div style=\"display: inline; background: #dddddd; border-radius: 3px; padding: 0px\" id=\"_tp_mqwalcomvemcxolagrxb_output_0_name\"\n",
|
|
" onclick=\"_output_onclick_mqwalcomvemcxolagrxb(0)\"\n",
|
|
" onmouseover=\"_output_onmouseover_mqwalcomvemcxolagrxb(0, this);\">sadness</div>\n",
|
|
"<div style=\"display: inline; background: #ffffff; border-radius: 3px; padding: 0px\" id=\"_tp_mqwalcomvemcxolagrxb_output_1_name\"\n",
|
|
" onclick=\"_output_onclick_mqwalcomvemcxolagrxb(1)\"\n",
|
|
" onmouseover=\"_output_onmouseover_mqwalcomvemcxolagrxb(1, this);\">joy</div>\n",
|
|
"<div style=\"display: inline; background: #ffffff; border-radius: 3px; padding: 0px\" id=\"_tp_mqwalcomvemcxolagrxb_output_2_name\"\n",
|
|
" onclick=\"_output_onclick_mqwalcomvemcxolagrxb(2)\"\n",
|
|
" onmouseover=\"_output_onmouseover_mqwalcomvemcxolagrxb(2, this);\">love</div>\n",
|
|
"<div style=\"display: inline; background: #ffffff; border-radius: 3px; padding: 0px\" id=\"_tp_mqwalcomvemcxolagrxb_output_3_name\"\n",
|
|
" onclick=\"_output_onclick_mqwalcomvemcxolagrxb(3)\"\n",
|
|
" onmouseover=\"_output_onmouseover_mqwalcomvemcxolagrxb(3, this);\">anger</div>\n",
|
|
"<div style=\"display: inline; background: #ffffff; border-radius: 3px; padding: 0px\" id=\"_tp_mqwalcomvemcxolagrxb_output_4_name\"\n",
|
|
" onclick=\"_output_onclick_mqwalcomvemcxolagrxb(4)\"\n",
|
|
" onmouseover=\"_output_onmouseover_mqwalcomvemcxolagrxb(4, this);\">fear</div>\n",
|
|
"<div style=\"display: inline; background: #ffffff; border-radius: 3px; padding: 0px\" id=\"_tp_mqwalcomvemcxolagrxb_output_5_name\"\n",
|
|
" onclick=\"_output_onclick_mqwalcomvemcxolagrxb(5)\"\n",
|
|
" onmouseover=\"_output_onmouseover_mqwalcomvemcxolagrxb(5, this);\">surprise</div><br><br><div id='_tp_mqwalcomvemcxolagrxb_output_0' style='display: block';><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"48.705281698548966%\" y1=\"33\" x2=\"48.705281698548966%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"48.705281698548966%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.3</text><line x1=\"37.053446541506865%\" y1=\"33\" x2=\"37.053446541506865%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"37.053446541506865%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.1</text><line x1=\"25.40161138446477%\" y1=\"33\" x2=\"25.40161138446477%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"25.40161138446477%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.1</text><line x1=\"13.749776227422668%\" y1=\"33\" x2=\"13.749776227422668%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"13.749776227422668%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.3</text><line x1=\"60.357116855591066%\" y1=\"33\" x2=\"60.357116855591066%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"60.357116855591066%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.5</text><line x1=\"72.00895201263315%\" y1=\"33\" x2=\"72.00895201263315%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"72.00895201263315%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.7</text><line x1=\"83.66078716967526%\" y1=\"33\" x2=\"83.66078716967526%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"83.66078716967526%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.9</text><line x1=\"39.62818421196115%\" y1=\"33\" x2=\"39.62818421196115%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"39.62818421196115%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.144195</text><text x=\"39.62818421196115%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.144195</text><text x=\"39.62818421196115%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"89.21244879033416%\" y1=\"33\" x2=\"89.21244879033416%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"89.21244879033416%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.995292</text><text x=\"89.21244879033416%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.995292</text><text x=\"89.21244879033416%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">sadness</tspan>(inputs)</text><rect x=\"34.77058073759715%\" width=\"54.441868052737%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"54.32176055713958%\" x2=\"89.21244879033416%\" y1=\"60\" y2=\"60\" id=\"_fb_mcgruhnbbayylzgorgmm_ind_7\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"71.76710467373687%\" y=\"71\" font-size=\"12px\" id=\"_fs_mcgruhnbbayylzgorgmm_ind_7\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.599</text><svg x=\"54.32176055713958%\" y=\"40\" height=\"20\" width=\"34.89068823319459%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeless</text> </svg></svg><line x1=\"38.02680334385719%\" x2=\"54.32176055713958%\" y1=\"60\" y2=\"60\" id=\"_fb_mcgruhnbbayylzgorgmm_ind_5\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"46.17428195049838%\" y=\"71\" font-size=\"12px\" id=\"_fs_mcgruhnbbayylzgorgmm_ind_5\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.28</text><svg x=\"38.02680334385719%\" y=\"40\" height=\"20\" width=\"16.294957213282387%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feeling</text> </svg></svg><line x1=\"35.74783532729797%\" x2=\"38.02680334385719%\" y1=\"60\" y2=\"60\" id=\"_fb_mcgruhnbbayylzgorgmm_ind_6\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"36.88731933557758%\" y=\"71\" font-size=\"12px\" id=\"_fs_mcgruhnbbayylzgorgmm_ind_6\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.039</text><svg x=\"35.74783532729797%\" y=\"40\" height=\"20\" width=\"2.2789680165592188%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><line x1=\"35.48979230746977%\" x2=\"35.74783532729797%\" y1=\"60\" y2=\"60\" id=\"_fb_mcgruhnbbayylzgorgmm_ind_4\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"35.61881381738387%\" y=\"71\" font-size=\"12px\" id=\"_fs_mcgruhnbbayylzgorgmm_ind_4\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.004</text><svg x=\"35.48979230746977%\" y=\"40\" height=\"20\" width=\"0.2580430198282002%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><line x1=\"35.25974804113106%\" x2=\"35.48979230746977%\" y1=\"60\" y2=\"60\" id=\"_fb_mcgruhnbbayylzgorgmm_ind_10\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"35.374770174300416%\" y=\"71\" font-size=\"12px\" id=\"_fs_mcgruhnbbayylzgorgmm_ind_10\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.004</text><svg x=\"35.25974804113106%\" y=\"40\" height=\"20\" width=\"0.23004426633870878%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">damned</text> </svg></svg><line x1=\"35.12477798765092%\" x2=\"35.25974804113106%\" y1=\"60\" y2=\"60\" id=\"_fb_mcgruhnbbayylzgorgmm_ind_13\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"35.19226301439099%\" y=\"71\" font-size=\"12px\" id=\"_fs_mcgruhnbbayylzgorgmm_ind_13\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.002</text><svg x=\"35.12477798765092%\" y=\"40\" height=\"20\" width=\"0.13497005348013857%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><line x1=\"35.01684120762833%\" x2=\"35.12477798765092%\" y1=\"60\" y2=\"60\" id=\"_fb_mcgruhnbbayylzgorgmm_ind_21\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"35.070809597639624%\" y=\"71\" font-size=\"12px\" id=\"_fs_mcgruhnbbayylzgorgmm_ind_21\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.002</text><svg x=\"35.01684120762833%\" y=\"40\" height=\"20\" width=\"0.107936780022591%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">awake</text> </svg></svg><line x1=\"34.92934607953971%\" x2=\"35.01684120762833%\" y1=\"60\" y2=\"60\" id=\"_fb_mcgruhnbbayylzgorgmm_ind_1\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"34.97309364358402%\" y=\"71\" font-size=\"12px\" id=\"_fs_mcgruhnbbayylzgorgmm_ind_1\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.002</text><svg x=\"34.92934607953971%\" y=\"40\" height=\"20\" width=\"0.08749512808861937%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"34.85699785819933%\" x2=\"34.92934607953971%\" y1=\"60\" y2=\"60\" id=\"_fb_mcgruhnbbayylzgorgmm_ind_8\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"34.893171968869524%\" y=\"71\" font-size=\"12px\" id=\"_fs_mcgruhnbbayylzgorgmm_ind_8\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.001</text><svg x=\"34.85699785819933%\" y=\"40\" height=\"20\" width=\"0.0723482213403841%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><line x1=\"34.81562871662379%\" x2=\"34.85699785819933%\" y1=\"60\" y2=\"60\" id=\"_fb_mcgruhnbbayylzgorgmm_ind_17\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"34.836313287411556%\" y=\"71\" font-size=\"12px\" id=\"_fs_mcgruhnbbayylzgorgmm_ind_17\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.001</text><svg x=\"34.81562871662379%\" y=\"40\" height=\"20\" width=\"0.041369141575536617%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">who</text> </svg></svg><line x1=\"34.78731729519357%\" x2=\"34.81562871662379%\" y1=\"60\" y2=\"60\" id=\"_fb_mcgruhnbbayylzgorgmm_ind_3\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"34.801473005908676%\" y=\"71\" font-size=\"12px\" id=\"_fs_mcgruhnbbayylzgorgmm_ind_3\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"34.78731729519357%\" y=\"40\" height=\"20\" width=\"0.02831142143022447%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">go</text> </svg></svg><line x1=\"34.776852820537954%\" x2=\"34.78731729519357%\" y1=\"60\" y2=\"60\" id=\"_fb_mcgruhnbbayylzgorgmm_ind_22\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"34.78208505786576%\" y=\"71\" font-size=\"12px\" id=\"_fs_mcgruhnbbayylzgorgmm_ind_22\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"34.776852820537954%\" y=\"40\" height=\"20\" width=\"0.010464474655613287%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><line x1=\"34.77058073759715%\" x2=\"34.776852820537954%\" y1=\"60\" y2=\"60\" id=\"_fb_mcgruhnbbayylzgorgmm_ind_0\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"34.773716779067556%\" y=\"71\" font-size=\"12px\" id=\"_fs_mcgruhnbbayylzgorgmm_ind_0\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"34.77058073759715%\" y=\"40\" height=\"20\" width=\"0.006272082940803614%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"54.32176055713958%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"54.32176055713958%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"54.32176055713958%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"54.32176055713958%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"54.32176055713958%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"54.32176055713958%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"54.32176055713958%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"54.32176055713958%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"38.02680334385719%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"38.02680334385719%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"38.02680334385719%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"38.02680334385719%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"38.02680334385719%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"38.02680334385719%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"38.02680334385719%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"38.02680334385719%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"35.74783532729797%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"35.74783532729797%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"35.74783532729797%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"35.74783532729797%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"35.74783532729797%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"35.74783532729797%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"35.74783532729797%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"35.74783532729797%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"35.48979230746977%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"35.48979230746977%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"35.48979230746977%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"35.48979230746977%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"35.48979230746977%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"35.48979230746977%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"35.48979230746977%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"35.48979230746977%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"35.25974804113106%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"35.25974804113106%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"35.25974804113106%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"35.25974804113106%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"35.25974804113106%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"35.25974804113106%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"35.25974804113106%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"35.25974804113106%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"35.12477798765092%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"35.12477798765092%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"35.12477798765092%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"35.12477798765092%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"35.12477798765092%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"35.12477798765092%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"35.12477798765092%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"35.12477798765092%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"35.01684120762833%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"35.01684120762833%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"35.01684120762833%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"35.01684120762833%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"35.01684120762833%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"35.01684120762833%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"35.01684120762833%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"35.01684120762833%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"34.92934607953971%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"34.92934607953971%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"34.92934607953971%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"34.92934607953971%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"34.92934607953971%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"34.92934607953971%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"34.92934607953971%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"34.92934607953971%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"34.85699785819933%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"34.85699785819933%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"34.85699785819933%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"34.85699785819933%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"34.85699785819933%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"34.85699785819933%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"34.85699785819933%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"34.85699785819933%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"34.81562871662379%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"34.81562871662379%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"34.81562871662379%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"34.81562871662379%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"34.81562871662379%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"34.81562871662379%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"34.81562871662379%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"34.81562871662379%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"34.78731729519357%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"34.78731729519357%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"34.78731729519357%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"34.78731729519357%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"34.78731729519357%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"34.78731729519357%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"34.78731729519357%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"34.78731729519357%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"34.776852820537954%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"34.776852820537954%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"34.776852820537954%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"34.776852820537954%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"34.776852820537954%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"34.776852820537954%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"34.776852820537954%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"34.776852820537954%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"89.21244879033416%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"34.77058073759715%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"89.21244879033416%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"54.32176055713958%\" y=\"40\" height=\"20\" width=\"34.89068823319459%\" onmouseover=\"document.getElementById('_tp_mcgruhnbbayylzgorgmm_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_7').style.opacity = 1;document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_mcgruhnbbayylzgorgmm_ind_7').style.textDecoration = 'none';document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_7').style.opacity = 0;document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"54.32176055713958%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"38.02680334385719%\" y=\"40\" height=\"20\" width=\"16.294957213282387%\" onmouseover=\"document.getElementById('_tp_mcgruhnbbayylzgorgmm_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_5').style.opacity = 1;document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_mcgruhnbbayylzgorgmm_ind_5').style.textDecoration = 'none';document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_5').style.opacity = 0;document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"38.02680334385719%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"35.74783532729797%\" y=\"40\" height=\"20\" width=\"2.2789680165592188%\" onmouseover=\"document.getElementById('_tp_mcgruhnbbayylzgorgmm_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_6').style.opacity = 1;document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_mcgruhnbbayylzgorgmm_ind_6').style.textDecoration = 'none';document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_6').style.opacity = 0;document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"35.74783532729797%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"35.48979230746977%\" y=\"40\" height=\"20\" width=\"0.2580430198282002%\" onmouseover=\"document.getElementById('_tp_mcgruhnbbayylzgorgmm_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_4').style.opacity = 1;document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_mcgruhnbbayylzgorgmm_ind_4').style.textDecoration = 'none';document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_4').style.opacity = 0;document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"35.48979230746977%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"35.25974804113106%\" y=\"40\" height=\"20\" width=\"0.23004426633870878%\" onmouseover=\"document.getElementById('_tp_mcgruhnbbayylzgorgmm_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_10').style.opacity = 1;document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_mcgruhnbbayylzgorgmm_ind_10').style.textDecoration = 'none';document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_10').style.opacity = 0;document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"35.25974804113106%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"35.12477798765092%\" y=\"40\" height=\"20\" width=\"0.13497005348013857%\" onmouseover=\"document.getElementById('_tp_mcgruhnbbayylzgorgmm_ind_13').style.textDecoration = 'underline';document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_13').style.opacity = 1;document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_13').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_mcgruhnbbayylzgorgmm_ind_13').style.textDecoration = 'none';document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_13').style.opacity = 0;document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_13').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"35.12477798765092%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"35.01684120762833%\" y=\"40\" height=\"20\" width=\"0.107936780022591%\" onmouseover=\"document.getElementById('_tp_mcgruhnbbayylzgorgmm_ind_21').style.textDecoration = 'underline';document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_21').style.opacity = 1;document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_21').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_mcgruhnbbayylzgorgmm_ind_21').style.textDecoration = 'none';document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_21').style.opacity = 0;document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_21').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"35.01684120762833%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"34.92934607953971%\" y=\"40\" height=\"20\" width=\"0.08749512808861937%\" onmouseover=\"document.getElementById('_tp_mcgruhnbbayylzgorgmm_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_1').style.opacity = 1;document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_mcgruhnbbayylzgorgmm_ind_1').style.textDecoration = 'none';document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_1').style.opacity = 0;document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"34.92934607953971%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"34.85699785819933%\" y=\"40\" height=\"20\" width=\"0.0723482213403841%\" onmouseover=\"document.getElementById('_tp_mcgruhnbbayylzgorgmm_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_8').style.opacity = 1;document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_mcgruhnbbayylzgorgmm_ind_8').style.textDecoration = 'none';document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_8').style.opacity = 0;document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"34.85699785819933%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"34.81562871662379%\" y=\"40\" height=\"20\" width=\"0.041369141575536617%\" onmouseover=\"document.getElementById('_tp_mcgruhnbbayylzgorgmm_ind_17').style.textDecoration = 'underline';document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_17').style.opacity = 1;document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_17').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_mcgruhnbbayylzgorgmm_ind_17').style.textDecoration = 'none';document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_17').style.opacity = 0;document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_17').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"34.81562871662379%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"34.78731729519357%\" y=\"40\" height=\"20\" width=\"0.02831142143022447%\" onmouseover=\"document.getElementById('_tp_mcgruhnbbayylzgorgmm_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_3').style.opacity = 1;document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_mcgruhnbbayylzgorgmm_ind_3').style.textDecoration = 'none';document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_3').style.opacity = 0;document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"34.78731729519357%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"34.776852820537954%\" y=\"40\" height=\"20\" width=\"0.010464474655613287%\" onmouseover=\"document.getElementById('_tp_mcgruhnbbayylzgorgmm_ind_22').style.textDecoration = 'underline';document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_22').style.opacity = 1;document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_22').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_mcgruhnbbayylzgorgmm_ind_22').style.textDecoration = 'none';document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_22').style.opacity = 0;document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_22').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"34.77058073759715%\" y=\"40\" height=\"20\" width=\"0.006272082940803614%\" onmouseover=\"document.getElementById('_tp_mcgruhnbbayylzgorgmm_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_0').style.opacity = 1;document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_mcgruhnbbayylzgorgmm_ind_0').style.textDecoration = 'none';document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_0').style.opacity = 0;document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"89.21244879033416%\" width=\"4.857603474363993%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"89.21244879033416%\" x2=\"91.8620781813047%\" y1=\"60\" y2=\"60\" id=\"_fb_mcgruhnbbayylzgorgmm_ind_11\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"90.53726348581944%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_mcgruhnbbayylzgorgmm_ind_11\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.045</text><svg x=\"89.21244879033416%\" y=\"40\" height=\"20\" width=\"2.6496293909705315%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeful</text> </svg></svg><line x1=\"91.8620781813047%\" x2=\"92.50724515820914%\" y1=\"60\" y2=\"60\" id=\"_fb_mcgruhnbbayylzgorgmm_ind_18\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"92.18466166975692%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_mcgruhnbbayylzgorgmm_ind_18\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.011</text><svg x=\"91.8620781813047%\" y=\"40\" height=\"20\" width=\"0.6451669769044486%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">cares</text> </svg></svg><line x1=\"92.50724515820914%\" x2=\"92.87122551390668%\" y1=\"60\" y2=\"60\" id=\"_fb_mcgruhnbbayylzgorgmm_ind_12\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"92.68923533605792%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_mcgruhnbbayylzgorgmm_ind_12\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.006</text><svg x=\"92.50724515820914%\" y=\"40\" height=\"20\" width=\"0.3639803556975352%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">just</text> </svg></svg><line x1=\"92.87122551390668%\" x2=\"93.23202978651445%\" y1=\"60\" y2=\"60\" id=\"_fb_mcgruhnbbayylzgorgmm_ind_20\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"93.05162765021056%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_mcgruhnbbayylzgorgmm_ind_20\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.006</text><svg x=\"92.87122551390668%\" y=\"40\" height=\"20\" width=\"0.3608042726077656%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">is</text> </svg></svg><line x1=\"93.23202978651445%\" x2=\"93.44203685870453%\" y1=\"60\" y2=\"60\" id=\"_fb_mcgruhnbbayylzgorgmm_ind_16\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"93.33703332260949%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_mcgruhnbbayylzgorgmm_ind_16\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.004</text><svg x=\"93.23202978651445%\" y=\"40\" height=\"20\" width=\"0.21000707219008063%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">someone</text> </svg></svg><line x1=\"93.44203685870453%\" x2=\"93.63978106372632%\" y1=\"60\" y2=\"60\" id=\"_fb_mcgruhnbbayylzgorgmm_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"93.54090896121542%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_mcgruhnbbayylzgorgmm_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.003</text><svg x=\"93.44203685870453%\" y=\"40\" height=\"20\" width=\"0.19774420502179169%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">can</text> </svg></svg><line x1=\"93.63978106372632%\" x2=\"93.78534265497291%\" y1=\"60\" y2=\"60\" id=\"_fb_mcgruhnbbayylzgorgmm_ind_19\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"93.71256185934962%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_mcgruhnbbayylzgorgmm_ind_19\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.002</text><svg x=\"93.63978106372632%\" y=\"40\" height=\"20\" width=\"0.14556159124659018%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">and</text> </svg></svg><line x1=\"93.78534265497291%\" x2=\"93.896519220045%\" y1=\"60\" y2=\"60\" id=\"_fb_mcgruhnbbayylzgorgmm_ind_14\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"93.84093093750894%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_mcgruhnbbayylzgorgmm_ind_14\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.002</text><svg x=\"93.78534265497291%\" y=\"40\" height=\"20\" width=\"0.11117656507208551%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">being</text> </svg></svg><line x1=\"93.896519220045%\" x2=\"94.0066271110811%\" y1=\"60\" y2=\"60\" id=\"_fb_mcgruhnbbayylzgorgmm_ind_15\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"93.95157316556305%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_mcgruhnbbayylzgorgmm_ind_15\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.002</text><svg x=\"93.896519220045%\" y=\"40\" height=\"20\" width=\"0.11010789103610819%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">around</text> </svg></svg><line x1=\"94.0066271110811%\" x2=\"94.07005226469815%\" y1=\"60\" y2=\"60\" id=\"_fb_mcgruhnbbayylzgorgmm_ind_9\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"94.03833968788962%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_mcgruhnbbayylzgorgmm_ind_9\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.001</text><svg x=\"94.0066271110811%\" y=\"40\" height=\"20\" width=\"0.0634251536170467%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"91.8620781813047%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.8620781813047%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.8620781813047%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.8620781813047%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.8620781813047%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.8620781813047%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.8620781813047%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.8620781813047%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"92.50724515820914%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"92.50724515820914%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"92.50724515820914%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"92.50724515820914%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"92.50724515820914%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"92.50724515820914%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"92.50724515820914%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"92.50724515820914%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"92.87122551390668%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"92.87122551390668%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"92.87122551390668%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"92.87122551390668%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"92.87122551390668%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"92.87122551390668%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"92.87122551390668%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"92.87122551390668%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"93.23202978651445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"93.23202978651445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"93.23202978651445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"93.23202978651445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"93.23202978651445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"93.23202978651445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"93.23202978651445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"93.23202978651445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"93.44203685870453%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"93.44203685870453%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"93.44203685870453%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"93.44203685870453%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"93.44203685870453%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"93.44203685870453%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"93.44203685870453%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"93.44203685870453%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"93.63978106372632%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"93.63978106372632%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"93.63978106372632%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"93.63978106372632%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"93.63978106372632%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"93.63978106372632%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"93.63978106372632%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"93.63978106372632%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"93.78534265497291%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"93.78534265497291%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"93.78534265497291%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"93.78534265497291%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"93.78534265497291%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"93.78534265497291%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"93.78534265497291%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"93.78534265497291%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"93.896519220045%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"93.896519220045%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"93.896519220045%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"93.896519220045%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"93.896519220045%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"93.896519220045%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"93.896519220045%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"93.896519220045%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"94.0066271110811%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"94.0066271110811%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"94.0066271110811%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"94.0066271110811%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"94.0066271110811%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"94.0066271110811%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"94.0066271110811%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"94.0066271110811%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"89.21244879033416%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"94.07005226469815%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"91.8620781813047%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"89.21244879033416%\" y=\"40\" height=\"20\" width=\"2.6496293909705315%\" onmouseover=\"document.getElementById('_tp_mcgruhnbbayylzgorgmm_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_11').style.opacity = 1;document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_mcgruhnbbayylzgorgmm_ind_11').style.textDecoration = 'none';document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_11').style.opacity = 0;document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"92.50724515820914%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.8620781813047%\" y=\"40\" height=\"20\" width=\"0.6451669769044486%\" onmouseover=\"document.getElementById('_tp_mcgruhnbbayylzgorgmm_ind_18').style.textDecoration = 'underline';document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_18').style.opacity = 1;document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_18').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_mcgruhnbbayylzgorgmm_ind_18').style.textDecoration = 'none';document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_18').style.opacity = 0;document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_18').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"92.87122551390668%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"92.50724515820914%\" y=\"40\" height=\"20\" width=\"0.3639803556975352%\" onmouseover=\"document.getElementById('_tp_mcgruhnbbayylzgorgmm_ind_12').style.textDecoration = 'underline';document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_12').style.opacity = 1;document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_12').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_mcgruhnbbayylzgorgmm_ind_12').style.textDecoration = 'none';document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_12').style.opacity = 0;document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_12').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"93.23202978651445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"92.87122551390668%\" y=\"40\" height=\"20\" width=\"0.3608042726077656%\" onmouseover=\"document.getElementById('_tp_mcgruhnbbayylzgorgmm_ind_20').style.textDecoration = 'underline';document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_20').style.opacity = 1;document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_20').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_mcgruhnbbayylzgorgmm_ind_20').style.textDecoration = 'none';document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_20').style.opacity = 0;document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_20').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"93.44203685870453%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"93.23202978651445%\" y=\"40\" height=\"20\" width=\"0.21000707219008063%\" onmouseover=\"document.getElementById('_tp_mcgruhnbbayylzgorgmm_ind_16').style.textDecoration = 'underline';document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_16').style.opacity = 1;document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_16').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_mcgruhnbbayylzgorgmm_ind_16').style.textDecoration = 'none';document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_16').style.opacity = 0;document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_16').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"93.63978106372632%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"93.44203685870453%\" y=\"40\" height=\"20\" width=\"0.19774420502179169%\" onmouseover=\"document.getElementById('_tp_mcgruhnbbayylzgorgmm_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_2').style.opacity = 1;document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_mcgruhnbbayylzgorgmm_ind_2').style.textDecoration = 'none';document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_2').style.opacity = 0;document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"93.78534265497291%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"93.63978106372632%\" y=\"40\" height=\"20\" width=\"0.14556159124659018%\" onmouseover=\"document.getElementById('_tp_mcgruhnbbayylzgorgmm_ind_19').style.textDecoration = 'underline';document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_19').style.opacity = 1;document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_19').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_mcgruhnbbayylzgorgmm_ind_19').style.textDecoration = 'none';document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_19').style.opacity = 0;document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_19').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"93.896519220045%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"93.78534265497291%\" y=\"40\" height=\"20\" width=\"0.11117656507208551%\" onmouseover=\"document.getElementById('_tp_mcgruhnbbayylzgorgmm_ind_14').style.textDecoration = 'underline';document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_14').style.opacity = 1;document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_14').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_mcgruhnbbayylzgorgmm_ind_14').style.textDecoration = 'none';document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_14').style.opacity = 0;document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_14').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"94.0066271110811%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"93.896519220045%\" y=\"40\" height=\"20\" width=\"0.11010789103610819%\" onmouseover=\"document.getElementById('_tp_mcgruhnbbayylzgorgmm_ind_15').style.textDecoration = 'underline';document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_15').style.opacity = 1;document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_15').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_mcgruhnbbayylzgorgmm_ind_15').style.textDecoration = 'none';document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_15').style.opacity = 0;document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_15').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"94.0066271110811%\" y=\"40\" height=\"20\" width=\"0.0634251536170467%\" onmouseover=\"document.getElementById('_tp_mcgruhnbbayylzgorgmm_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_9').style.opacity = 1;document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_mcgruhnbbayylzgorgmm_ind_9').style.textDecoration = 'none';document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_9').style.opacity = 0;document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_mcgruhnbbayylzgorgmm_ind_0'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_0').style.opacity = 1; document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_0').style.opacity = 0; document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.002</div\n",
|
|
" ><div id='_tp_mcgruhnbbayylzgorgmm_ind_1'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_1').style.opacity = 1; document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_1').style.opacity = 0; document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_1').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.003</div\n",
|
|
" ><div id='_tp_mcgruhnbbayylzgorgmm_ind_2'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_2').style.opacity = 1; document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_2').style.opacity = 0; document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_2').style.opacity = 0;\"\n",
|
|
" >can </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_mcgruhnbbayylzgorgmm_ind_3'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_3').style.opacity = 1; document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_3').style.opacity = 0; document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_3').style.opacity = 0;\"\n",
|
|
" >go </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.004</div\n",
|
|
" ><div id='_tp_mcgruhnbbayylzgorgmm_ind_4'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_4').style.opacity = 1; document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_4').style.opacity = 0; document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_4').style.opacity = 0;\"\n",
|
|
" >from </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.28</div\n",
|
|
" ><div id='_tp_mcgruhnbbayylzgorgmm_ind_5'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.32208358090711037); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_5').style.opacity = 1; document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_5').style.opacity = 0; document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_5').style.opacity = 0;\"\n",
|
|
" >feeling </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.039</div\n",
|
|
" ><div id='_tp_mcgruhnbbayylzgorgmm_ind_6'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.03830461477520289); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_6').style.opacity = 1; document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_6').style.opacity = 0; document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_6').style.opacity = 0;\"\n",
|
|
" >so </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.599</div\n",
|
|
" ><div id='_tp_mcgruhnbbayylzgorgmm_ind_7'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.7004555357496535); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_7').style.opacity = 1; document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_7').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_7').style.opacity = 0; document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_7').style.opacity = 0;\"\n",
|
|
" >hopeless </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.001</div\n",
|
|
" ><div id='_tp_mcgruhnbbayylzgorgmm_ind_8'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_8').style.opacity = 1; document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_8').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_8').style.opacity = 0; document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_8').style.opacity = 0;\"\n",
|
|
" >to </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.001</div\n",
|
|
" ><div id='_tp_mcgruhnbbayylzgorgmm_ind_9'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_9').style.opacity = 1; document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_9').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_9').style.opacity = 0; document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_9').style.opacity = 0;\"\n",
|
|
" >so </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.004</div\n",
|
|
" ><div id='_tp_mcgruhnbbayylzgorgmm_ind_10'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_10').style.opacity = 1; document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_10').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_10').style.opacity = 0; document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_10').style.opacity = 0;\"\n",
|
|
" >damned </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.045</div\n",
|
|
" ><div id='_tp_mcgruhnbbayylzgorgmm_ind_11'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.04618736383442258); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_11').style.opacity = 1; document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_11').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_11').style.opacity = 0; document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_11').style.opacity = 0;\"\n",
|
|
" >hopeful </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.006</div\n",
|
|
" ><div id='_tp_mcgruhnbbayylzgorgmm_ind_12'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_12').style.opacity = 1; document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_12').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_12').style.opacity = 0; document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_12').style.opacity = 0;\"\n",
|
|
" >just </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.002</div\n",
|
|
" ><div id='_tp_mcgruhnbbayylzgorgmm_ind_13'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_13').style.opacity = 1; document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_13').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_13').style.opacity = 0; document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_13').style.opacity = 0;\"\n",
|
|
" >from </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.002</div\n",
|
|
" ><div id='_tp_mcgruhnbbayylzgorgmm_ind_14'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_14').style.opacity = 1; document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_14').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_14').style.opacity = 0; document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_14').style.opacity = 0;\"\n",
|
|
" >being </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.002</div\n",
|
|
" ><div id='_tp_mcgruhnbbayylzgorgmm_ind_15'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_15').style.opacity = 1; document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_15').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_15').style.opacity = 0; document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_15').style.opacity = 0;\"\n",
|
|
" >around </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.004</div\n",
|
|
" ><div id='_tp_mcgruhnbbayylzgorgmm_ind_16'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_16').style.opacity = 1; document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_16').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_16').style.opacity = 0; document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_16').style.opacity = 0;\"\n",
|
|
" >someone </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.001</div\n",
|
|
" ><div id='_tp_mcgruhnbbayylzgorgmm_ind_17'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_17').style.opacity = 1; document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_17').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_17').style.opacity = 0; document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_17').style.opacity = 0;\"\n",
|
|
" >who </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.011</div\n",
|
|
" ><div id='_tp_mcgruhnbbayylzgorgmm_ind_18'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_18').style.opacity = 1; document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_18').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_18').style.opacity = 0; document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_18').style.opacity = 0;\"\n",
|
|
" >cares </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.002</div\n",
|
|
" ><div id='_tp_mcgruhnbbayylzgorgmm_ind_19'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_19').style.opacity = 1; document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_19').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_19').style.opacity = 0; document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_19').style.opacity = 0;\"\n",
|
|
" >and </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.006</div\n",
|
|
" ><div id='_tp_mcgruhnbbayylzgorgmm_ind_20'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_20').style.opacity = 1; document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_20').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_20').style.opacity = 0; document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_20').style.opacity = 0;\"\n",
|
|
" >is </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.002</div\n",
|
|
" ><div id='_tp_mcgruhnbbayylzgorgmm_ind_21'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_21').style.opacity = 1; document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_21').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_21').style.opacity = 0; document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_21').style.opacity = 0;\"\n",
|
|
" >awake</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_mcgruhnbbayylzgorgmm_ind_22'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_22').style.opacity = 1; document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_22').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_mcgruhnbbayylzgorgmm_ind_22').style.opacity = 0; document.getElementById('_fs_mcgruhnbbayylzgorgmm_ind_22').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_mqwalcomvemcxolagrxb_output_0_zoom' style='display: none;'><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"52.477005843034206%\" y1=\"33\" x2=\"52.477005843034206%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"52.477005843034206%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.6</text><line x1=\"36.10361563928949%\" y1=\"33\" x2=\"36.10361563928949%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"36.10361563928949%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.4</text><line x1=\"19.730225435544774%\" y1=\"33\" x2=\"19.730225435544774%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"19.730225435544774%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.2</text><line x1=\"68.85039604677893%\" y1=\"33\" x2=\"68.85039604677893%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"68.85039604677893%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.8</text><line x1=\"85.22378625052362%\" y1=\"33\" x2=\"85.22378625052362%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"85.22378625052362%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">1</text><line x1=\"15.161602850356608%\" y1=\"33\" x2=\"15.161602850356608%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"15.161602850356608%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.144195</text><text x=\"15.161602850356608%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.144195</text><text x=\"15.161602850356608%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"84.83839633097394%\" y1=\"33\" x2=\"84.83839633097394%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"84.83839633097394%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.995292</text><text x=\"84.83839633097394%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.995292</text><text x=\"84.83839633097394%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">sadness</tspan>(inputs)</text><rect x=\"8.335601961324262%\" width=\"76.50279436964968%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"35.80930818994994%\" x2=\"84.83839633097394%\" y1=\"60\" y2=\"60\" id=\"_fb_fmavpvszkmgyuenmjgdb_ind_7\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"60.32385226046193%\" y=\"71\" font-size=\"12px\" id=\"_fs_fmavpvszkmgyuenmjgdb_ind_7\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.599</text><svg x=\"35.80930818994994%\" y=\"40\" height=\"20\" width=\"49.029088141024%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeless</text> </svg></svg><line x1=\"12.911310646177007%\" x2=\"35.80930818994994%\" y1=\"60\" y2=\"60\" id=\"_fb_fmavpvszkmgyuenmjgdb_ind_5\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"24.360309418063473%\" y=\"71\" font-size=\"12px\" id=\"_fs_fmavpvszkmgyuenmjgdb_ind_5\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.28</text><svg x=\"12.911310646177007%\" y=\"40\" height=\"20\" width=\"22.89799754377293%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feeling</text> </svg></svg><line x1=\"9.708859522035745%\" x2=\"12.911310646177007%\" y1=\"60\" y2=\"60\" id=\"_fb_fmavpvszkmgyuenmjgdb_ind_6\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"11.310085084106376%\" y=\"71\" font-size=\"12px\" id=\"_fs_fmavpvszkmgyuenmjgdb_ind_6\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.039</text><svg x=\"9.708859522035745%\" y=\"40\" height=\"20\" width=\"3.2024511241412625%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><line x1=\"9.346252345049873%\" x2=\"9.708859522035745%\" y1=\"60\" y2=\"60\" id=\"_fb_fmavpvszkmgyuenmjgdb_ind_4\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"9.527555933542809%\" y=\"71\" font-size=\"12px\" id=\"_fs_fmavpvszkmgyuenmjgdb_ind_4\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.004</text><svg x=\"9.346252345049873%\" y=\"40\" height=\"20\" width=\"0.36260717698587186%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><line x1=\"9.022989572608285%\" x2=\"9.346252345049873%\" y1=\"60\" y2=\"60\" id=\"_fb_fmavpvszkmgyuenmjgdb_ind_10\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"9.184620958829079%\" y=\"71\" font-size=\"12px\" id=\"_fs_fmavpvszkmgyuenmjgdb_ind_10\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.004</text><svg x=\"9.022989572608285%\" y=\"40\" height=\"20\" width=\"0.32326277244158774%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">damned</text> </svg></svg><line x1=\"8.833326972540089%\" x2=\"9.022989572608285%\" y1=\"60\" y2=\"60\" id=\"_fb_fmavpvszkmgyuenmjgdb_ind_13\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.928158272574187%\" y=\"71\" font-size=\"12px\" id=\"_fs_fmavpvszkmgyuenmjgdb_ind_13\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.002</text><svg x=\"8.833326972540089%\" y=\"40\" height=\"20\" width=\"0.18966260006819624%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><line x1=\"8.681652065297895%\" x2=\"8.833326972540089%\" y1=\"60\" y2=\"60\" id=\"_fb_fmavpvszkmgyuenmjgdb_ind_21\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.757489518918991%\" y=\"71\" font-size=\"12px\" id=\"_fs_fmavpvszkmgyuenmjgdb_ind_21\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.002</text><svg x=\"8.681652065297895%\" y=\"40\" height=\"20\" width=\"0.15167490724219412%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">awake</text> </svg></svg><line x1=\"8.558702173387033%\" x2=\"8.681652065297895%\" y1=\"60\" y2=\"60\" id=\"_fb_fmavpvszkmgyuenmjgdb_ind_1\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.620177119342465%\" y=\"71\" font-size=\"12px\" id=\"_fs_fmavpvszkmgyuenmjgdb_ind_1\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.002</text><svg x=\"8.558702173387033%\" y=\"40\" height=\"20\" width=\"0.12294989191086181%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"8.457037015702658%\" x2=\"8.558702173387033%\" y1=\"60\" y2=\"60\" id=\"_fb_fmavpvszkmgyuenmjgdb_ind_8\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.507869594544847%\" y=\"71\" font-size=\"12px\" id=\"_fs_fmavpvszkmgyuenmjgdb_ind_8\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.001</text><svg x=\"8.457037015702658%\" y=\"40\" height=\"20\" width=\"0.10166515768437456%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><line x1=\"8.398904276243087%\" x2=\"8.457037015702658%\" y1=\"60\" y2=\"60\" id=\"_fb_fmavpvszkmgyuenmjgdb_ind_17\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.427970645972874%\" y=\"71\" font-size=\"12px\" id=\"_fs_fmavpvszkmgyuenmjgdb_ind_17\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.001</text><svg x=\"8.398904276243087%\" y=\"40\" height=\"20\" width=\"0.058132739459571425%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">who</text> </svg></svg><line x1=\"8.35912050449795%\" x2=\"8.398904276243087%\" y1=\"60\" y2=\"60\" id=\"_fb_fmavpvszkmgyuenmjgdb_ind_3\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.37901239037052%\" y=\"71\" font-size=\"12px\" id=\"_fs_fmavpvszkmgyuenmjgdb_ind_3\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"8.35912050449795%\" y=\"40\" height=\"20\" width=\"0.03978377174513703%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">go</text> </svg></svg><line x1=\"8.344415616855423%\" x2=\"8.35912050449795%\" y1=\"60\" y2=\"60\" id=\"_fb_fmavpvszkmgyuenmjgdb_ind_22\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.351768060676687%\" y=\"71\" font-size=\"12px\" id=\"_fs_fmavpvszkmgyuenmjgdb_ind_22\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"8.344415616855423%\" y=\"40\" height=\"20\" width=\"0.014704887642526643%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><line x1=\"8.335601961324262%\" x2=\"8.344415616855423%\" y1=\"60\" y2=\"60\" id=\"_fb_fmavpvszkmgyuenmjgdb_ind_0\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.340008789089843%\" y=\"71\" font-size=\"12px\" id=\"_fs_fmavpvszkmgyuenmjgdb_ind_0\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"8.335601961324262%\" y=\"40\" height=\"20\" width=\"0.008813655531161757%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"35.80930818994994%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"35.80930818994994%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"35.80930818994994%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"35.80930818994994%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"35.80930818994994%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"35.80930818994994%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"35.80930818994994%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"35.80930818994994%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"12.911310646177007%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"12.911310646177007%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"12.911310646177007%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"12.911310646177007%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"12.911310646177007%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"12.911310646177007%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"12.911310646177007%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"12.911310646177007%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"9.708859522035745%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"9.708859522035745%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"9.708859522035745%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"9.708859522035745%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"9.708859522035745%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"9.708859522035745%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"9.708859522035745%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"9.708859522035745%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"9.346252345049873%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"9.346252345049873%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"9.346252345049873%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"9.346252345049873%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"9.346252345049873%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"9.346252345049873%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"9.346252345049873%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"9.346252345049873%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"9.022989572608285%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"9.022989572608285%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"9.022989572608285%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"9.022989572608285%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"9.022989572608285%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"9.022989572608285%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"9.022989572608285%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"9.022989572608285%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.833326972540089%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.833326972540089%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.833326972540089%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.833326972540089%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.833326972540089%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.833326972540089%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.833326972540089%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.833326972540089%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.681652065297895%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.681652065297895%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.681652065297895%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.681652065297895%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.681652065297895%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.681652065297895%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.681652065297895%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.681652065297895%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.558702173387033%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.558702173387033%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.558702173387033%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.558702173387033%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.558702173387033%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.558702173387033%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.558702173387033%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.558702173387033%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.457037015702658%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.457037015702658%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.457037015702658%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.457037015702658%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.457037015702658%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.457037015702658%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.457037015702658%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.457037015702658%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.398904276243087%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.398904276243087%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.398904276243087%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.398904276243087%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.398904276243087%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.398904276243087%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.398904276243087%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.398904276243087%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.35912050449795%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.35912050449795%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.35912050449795%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.35912050449795%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.35912050449795%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.35912050449795%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.35912050449795%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.35912050449795%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.344415616855423%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.344415616855423%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.344415616855423%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.344415616855423%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.344415616855423%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.344415616855423%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.344415616855423%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.344415616855423%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"84.83839633097394%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.335601961324262%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"84.83839633097394%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"35.80930818994994%\" y=\"40\" height=\"20\" width=\"49.029088141024%\" onmouseover=\"document.getElementById('_tp_fmavpvszkmgyuenmjgdb_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_7').style.opacity = 1;document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fmavpvszkmgyuenmjgdb_ind_7').style.textDecoration = 'none';document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_7').style.opacity = 0;document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"35.80930818994994%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"12.911310646177007%\" y=\"40\" height=\"20\" width=\"22.89799754377293%\" onmouseover=\"document.getElementById('_tp_fmavpvszkmgyuenmjgdb_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_5').style.opacity = 1;document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fmavpvszkmgyuenmjgdb_ind_5').style.textDecoration = 'none';document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_5').style.opacity = 0;document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"12.911310646177007%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"9.708859522035745%\" y=\"40\" height=\"20\" width=\"3.2024511241412625%\" onmouseover=\"document.getElementById('_tp_fmavpvszkmgyuenmjgdb_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_6').style.opacity = 1;document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fmavpvszkmgyuenmjgdb_ind_6').style.textDecoration = 'none';document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_6').style.opacity = 0;document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"9.708859522035745%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"9.346252345049873%\" y=\"40\" height=\"20\" width=\"0.36260717698587186%\" onmouseover=\"document.getElementById('_tp_fmavpvszkmgyuenmjgdb_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_4').style.opacity = 1;document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fmavpvszkmgyuenmjgdb_ind_4').style.textDecoration = 'none';document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_4').style.opacity = 0;document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"9.346252345049873%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"9.022989572608285%\" y=\"40\" height=\"20\" width=\"0.32326277244158774%\" onmouseover=\"document.getElementById('_tp_fmavpvszkmgyuenmjgdb_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_10').style.opacity = 1;document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fmavpvszkmgyuenmjgdb_ind_10').style.textDecoration = 'none';document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_10').style.opacity = 0;document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"9.022989572608285%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.833326972540089%\" y=\"40\" height=\"20\" width=\"0.18966260006819624%\" onmouseover=\"document.getElementById('_tp_fmavpvszkmgyuenmjgdb_ind_13').style.textDecoration = 'underline';document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_13').style.opacity = 1;document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_13').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fmavpvszkmgyuenmjgdb_ind_13').style.textDecoration = 'none';document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_13').style.opacity = 0;document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_13').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"8.833326972540089%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.681652065297895%\" y=\"40\" height=\"20\" width=\"0.15167490724219412%\" onmouseover=\"document.getElementById('_tp_fmavpvszkmgyuenmjgdb_ind_21').style.textDecoration = 'underline';document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_21').style.opacity = 1;document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_21').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fmavpvszkmgyuenmjgdb_ind_21').style.textDecoration = 'none';document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_21').style.opacity = 0;document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_21').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"8.681652065297895%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.558702173387033%\" y=\"40\" height=\"20\" width=\"0.12294989191086181%\" onmouseover=\"document.getElementById('_tp_fmavpvszkmgyuenmjgdb_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_1').style.opacity = 1;document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fmavpvszkmgyuenmjgdb_ind_1').style.textDecoration = 'none';document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_1').style.opacity = 0;document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"8.558702173387033%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.457037015702658%\" y=\"40\" height=\"20\" width=\"0.10166515768437456%\" onmouseover=\"document.getElementById('_tp_fmavpvszkmgyuenmjgdb_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_8').style.opacity = 1;document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fmavpvszkmgyuenmjgdb_ind_8').style.textDecoration = 'none';document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_8').style.opacity = 0;document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"8.457037015702658%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.398904276243087%\" y=\"40\" height=\"20\" width=\"0.058132739459571425%\" onmouseover=\"document.getElementById('_tp_fmavpvszkmgyuenmjgdb_ind_17').style.textDecoration = 'underline';document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_17').style.opacity = 1;document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_17').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fmavpvszkmgyuenmjgdb_ind_17').style.textDecoration = 'none';document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_17').style.opacity = 0;document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_17').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"8.398904276243087%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.35912050449795%\" y=\"40\" height=\"20\" width=\"0.03978377174513703%\" onmouseover=\"document.getElementById('_tp_fmavpvszkmgyuenmjgdb_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_3').style.opacity = 1;document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fmavpvszkmgyuenmjgdb_ind_3').style.textDecoration = 'none';document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_3').style.opacity = 0;document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"8.35912050449795%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.344415616855423%\" y=\"40\" height=\"20\" width=\"0.014704887642526643%\" onmouseover=\"document.getElementById('_tp_fmavpvszkmgyuenmjgdb_ind_22').style.textDecoration = 'underline';document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_22').style.opacity = 1;document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_22').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fmavpvszkmgyuenmjgdb_ind_22').style.textDecoration = 'none';document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_22').style.opacity = 0;document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_22').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"8.335601961324262%\" y=\"40\" height=\"20\" width=\"0.008813655531161757%\" onmouseover=\"document.getElementById('_tp_fmavpvszkmgyuenmjgdb_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_0').style.opacity = 1;document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fmavpvszkmgyuenmjgdb_ind_0').style.textDecoration = 'none';document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_0').style.opacity = 0;document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"84.83839633097394%\" width=\"6.826000889032345%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"84.83839633097394%\" x2=\"88.5617081809061%\" y1=\"60\" y2=\"60\" id=\"_fb_fmavpvszkmgyuenmjgdb_ind_11\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"86.70005225594002%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_fmavpvszkmgyuenmjgdb_ind_11\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.045</text><svg x=\"84.83839633097394%\" y=\"40\" height=\"20\" width=\"3.723311849932159%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeful</text> </svg></svg><line x1=\"88.5617081809061%\" x2=\"89.46830963184084%\" y1=\"60\" y2=\"60\" id=\"_fb_fmavpvszkmgyuenmjgdb_ind_18\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"89.01500890637347%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_fmavpvszkmgyuenmjgdb_ind_18\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.011</text><svg x=\"88.5617081809061%\" y=\"40\" height=\"20\" width=\"0.906601450934744%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">cares</text> </svg></svg><line x1=\"89.46830963184084%\" x2=\"89.97978205742969%\" y1=\"60\" y2=\"60\" id=\"_fb_fmavpvszkmgyuenmjgdb_ind_12\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"89.72404584463527%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_fmavpvszkmgyuenmjgdb_ind_12\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.006</text><svg x=\"89.46830963184084%\" y=\"40\" height=\"20\" width=\"0.511472425588849%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">just</text> </svg></svg><line x1=\"89.97978205742969%\" x2=\"90.48679138797405%\" y1=\"60\" y2=\"60\" id=\"_fb_fmavpvszkmgyuenmjgdb_ind_20\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"90.23328672270188%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_fmavpvszkmgyuenmjgdb_ind_20\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.006</text><svg x=\"89.97978205742969%\" y=\"40\" height=\"20\" width=\"0.5070093305443635%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">is</text> </svg></svg><line x1=\"90.48679138797405%\" x2=\"90.78189749719805%\" y1=\"60\" y2=\"60\" id=\"_fb_fmavpvszkmgyuenmjgdb_ind_16\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"90.63434444258604%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_fmavpvszkmgyuenmjgdb_ind_16\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.004</text><svg x=\"90.48679138797405%\" y=\"40\" height=\"20\" width=\"0.29510610922399394%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">someone</text> </svg></svg><line x1=\"90.78189749719805%\" x2=\"91.05977158189914%\" y1=\"60\" y2=\"60\" id=\"_fb_fmavpvszkmgyuenmjgdb_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"90.9208345395486%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_fmavpvszkmgyuenmjgdb_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.003</text><svg x=\"90.78189749719805%\" y=\"40\" height=\"20\" width=\"0.27787408470109654%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">can</text> </svg></svg><line x1=\"91.05977158189914%\" x2=\"91.26431762121707%\" y1=\"60\" y2=\"60\" id=\"_fb_fmavpvszkmgyuenmjgdb_ind_19\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.16204460155811%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_fmavpvszkmgyuenmjgdb_ind_19\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.002</text><svg x=\"91.05977158189914%\" y=\"40\" height=\"20\" width=\"0.20454603931793258%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">and</text> </svg></svg><line x1=\"91.26431762121707%\" x2=\"91.42054513876286%\" y1=\"60\" y2=\"60\" id=\"_fb_fmavpvszkmgyuenmjgdb_ind_14\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.34243137998996%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_fmavpvszkmgyuenmjgdb_ind_14\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.002</text><svg x=\"91.26431762121707%\" y=\"40\" height=\"20\" width=\"0.156227517545787%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">being</text> </svg></svg><line x1=\"91.42054513876286%\" x2=\"91.57527093432614%\" y1=\"60\" y2=\"60\" id=\"_fb_fmavpvszkmgyuenmjgdb_ind_15\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.4979080365445%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_fmavpvszkmgyuenmjgdb_ind_15\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.002</text><svg x=\"91.42054513876286%\" y=\"40\" height=\"20\" width=\"0.15472579556328014%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">around</text> </svg></svg><line x1=\"91.57527093432614%\" x2=\"91.66439722000628%\" y1=\"60\" y2=\"60\" id=\"_fb_fmavpvszkmgyuenmjgdb_ind_9\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.61983407716622%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_fmavpvszkmgyuenmjgdb_ind_9\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.001</text><svg x=\"91.57527093432614%\" y=\"40\" height=\"20\" width=\"0.08912628568013758%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"88.5617081809061%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"88.5617081809061%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"88.5617081809061%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"88.5617081809061%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"88.5617081809061%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"88.5617081809061%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"88.5617081809061%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"88.5617081809061%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"89.46830963184084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"89.46830963184084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"89.46830963184084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"89.46830963184084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"89.46830963184084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"89.46830963184084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"89.46830963184084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"89.46830963184084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"89.97978205742969%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"89.97978205742969%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"89.97978205742969%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"89.97978205742969%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"89.97978205742969%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"89.97978205742969%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"89.97978205742969%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"89.97978205742969%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"90.48679138797405%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.48679138797405%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.48679138797405%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.48679138797405%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.48679138797405%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.48679138797405%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.48679138797405%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.48679138797405%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"90.78189749719805%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.78189749719805%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.78189749719805%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.78189749719805%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.78189749719805%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.78189749719805%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.78189749719805%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.78189749719805%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.05977158189914%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.05977158189914%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.05977158189914%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.05977158189914%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.05977158189914%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.05977158189914%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.05977158189914%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.05977158189914%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.26431762121707%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.26431762121707%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.26431762121707%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.26431762121707%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.26431762121707%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.26431762121707%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.26431762121707%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.26431762121707%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.42054513876286%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.42054513876286%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.42054513876286%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.42054513876286%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.42054513876286%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.42054513876286%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.42054513876286%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.42054513876286%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.57527093432614%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.57527093432614%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.57527093432614%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.57527093432614%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.57527093432614%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.57527093432614%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.57527093432614%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.57527093432614%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"84.83839633097394%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66439722000628%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"88.5617081809061%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"84.83839633097394%\" y=\"40\" height=\"20\" width=\"3.723311849932159%\" onmouseover=\"document.getElementById('_tp_fmavpvszkmgyuenmjgdb_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_11').style.opacity = 1;document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fmavpvszkmgyuenmjgdb_ind_11').style.textDecoration = 'none';document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_11').style.opacity = 0;document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"89.46830963184084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"88.5617081809061%\" y=\"40\" height=\"20\" width=\"0.906601450934744%\" onmouseover=\"document.getElementById('_tp_fmavpvszkmgyuenmjgdb_ind_18').style.textDecoration = 'underline';document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_18').style.opacity = 1;document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_18').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fmavpvszkmgyuenmjgdb_ind_18').style.textDecoration = 'none';document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_18').style.opacity = 0;document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_18').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"89.97978205742969%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"89.46830963184084%\" y=\"40\" height=\"20\" width=\"0.511472425588849%\" onmouseover=\"document.getElementById('_tp_fmavpvszkmgyuenmjgdb_ind_12').style.textDecoration = 'underline';document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_12').style.opacity = 1;document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_12').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fmavpvszkmgyuenmjgdb_ind_12').style.textDecoration = 'none';document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_12').style.opacity = 0;document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_12').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"90.48679138797405%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"89.97978205742969%\" y=\"40\" height=\"20\" width=\"0.5070093305443635%\" onmouseover=\"document.getElementById('_tp_fmavpvszkmgyuenmjgdb_ind_20').style.textDecoration = 'underline';document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_20').style.opacity = 1;document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_20').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fmavpvszkmgyuenmjgdb_ind_20').style.textDecoration = 'none';document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_20').style.opacity = 0;document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_20').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"90.78189749719805%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"90.48679138797405%\" y=\"40\" height=\"20\" width=\"0.29510610922399394%\" onmouseover=\"document.getElementById('_tp_fmavpvszkmgyuenmjgdb_ind_16').style.textDecoration = 'underline';document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_16').style.opacity = 1;document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_16').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fmavpvszkmgyuenmjgdb_ind_16').style.textDecoration = 'none';document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_16').style.opacity = 0;document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_16').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.05977158189914%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"90.78189749719805%\" y=\"40\" height=\"20\" width=\"0.27787408470109654%\" onmouseover=\"document.getElementById('_tp_fmavpvszkmgyuenmjgdb_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_2').style.opacity = 1;document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fmavpvszkmgyuenmjgdb_ind_2').style.textDecoration = 'none';document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_2').style.opacity = 0;document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.26431762121707%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.05977158189914%\" y=\"40\" height=\"20\" width=\"0.20454603931793258%\" onmouseover=\"document.getElementById('_tp_fmavpvszkmgyuenmjgdb_ind_19').style.textDecoration = 'underline';document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_19').style.opacity = 1;document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_19').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fmavpvszkmgyuenmjgdb_ind_19').style.textDecoration = 'none';document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_19').style.opacity = 0;document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_19').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.42054513876286%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.26431762121707%\" y=\"40\" height=\"20\" width=\"0.156227517545787%\" onmouseover=\"document.getElementById('_tp_fmavpvszkmgyuenmjgdb_ind_14').style.textDecoration = 'underline';document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_14').style.opacity = 1;document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_14').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fmavpvszkmgyuenmjgdb_ind_14').style.textDecoration = 'none';document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_14').style.opacity = 0;document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_14').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.57527093432614%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.42054513876286%\" y=\"40\" height=\"20\" width=\"0.15472579556328014%\" onmouseover=\"document.getElementById('_tp_fmavpvszkmgyuenmjgdb_ind_15').style.textDecoration = 'underline';document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_15').style.opacity = 1;document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_15').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fmavpvszkmgyuenmjgdb_ind_15').style.textDecoration = 'none';document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_15').style.opacity = 0;document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_15').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"91.57527093432614%\" y=\"40\" height=\"20\" width=\"0.08912628568013758%\" onmouseover=\"document.getElementById('_tp_fmavpvszkmgyuenmjgdb_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_9').style.opacity = 1;document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fmavpvszkmgyuenmjgdb_ind_9').style.textDecoration = 'none';document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_9').style.opacity = 0;document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_fmavpvszkmgyuenmjgdb_ind_0'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_0').style.opacity = 1; document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_0').style.opacity = 0; document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.002</div\n",
|
|
" ><div id='_tp_fmavpvszkmgyuenmjgdb_ind_1'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_1').style.opacity = 1; document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_1').style.opacity = 0; document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_1').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.003</div\n",
|
|
" ><div id='_tp_fmavpvszkmgyuenmjgdb_ind_2'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_2').style.opacity = 1; document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_2').style.opacity = 0; document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_2').style.opacity = 0;\"\n",
|
|
" >can </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_fmavpvszkmgyuenmjgdb_ind_3'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_3').style.opacity = 1; document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_3').style.opacity = 0; document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_3').style.opacity = 0;\"\n",
|
|
" >go </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.004</div\n",
|
|
" ><div id='_tp_fmavpvszkmgyuenmjgdb_ind_4'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_4').style.opacity = 1; document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_4').style.opacity = 0; document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_4').style.opacity = 0;\"\n",
|
|
" >from </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.28</div\n",
|
|
" ><div id='_tp_fmavpvszkmgyuenmjgdb_ind_5'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.46397306397306415); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_5').style.opacity = 1; document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_5').style.opacity = 0; document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_5').style.opacity = 0;\"\n",
|
|
" >feeling </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.039</div\n",
|
|
" ><div id='_tp_fmavpvszkmgyuenmjgdb_ind_6'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.06195286195286207); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_6').style.opacity = 1; document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_6').style.opacity = 0; document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_6').style.opacity = 0;\"\n",
|
|
" >so </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.599</div\n",
|
|
" ><div id='_tp_fmavpvszkmgyuenmjgdb_ind_7'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 1.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_7').style.opacity = 1; document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_7').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_7').style.opacity = 0; document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_7').style.opacity = 0;\"\n",
|
|
" >hopeless </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.001</div\n",
|
|
" ><div id='_tp_fmavpvszkmgyuenmjgdb_ind_8'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_8').style.opacity = 1; document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_8').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_8').style.opacity = 0; document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_8').style.opacity = 0;\"\n",
|
|
" >to </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.001</div\n",
|
|
" ><div id='_tp_fmavpvszkmgyuenmjgdb_ind_9'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_9').style.opacity = 1; document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_9').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_9').style.opacity = 0; document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_9').style.opacity = 0;\"\n",
|
|
" >so </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.004</div\n",
|
|
" ><div id='_tp_fmavpvszkmgyuenmjgdb_ind_10'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_10').style.opacity = 1; document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_10').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_10').style.opacity = 0; document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_10').style.opacity = 0;\"\n",
|
|
" >damned </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.045</div\n",
|
|
" ><div id='_tp_fmavpvszkmgyuenmjgdb_ind_11'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.06983561101208147); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_11').style.opacity = 1; document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_11').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_11').style.opacity = 0; document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_11').style.opacity = 0;\"\n",
|
|
" >hopeful </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.006</div\n",
|
|
" ><div id='_tp_fmavpvszkmgyuenmjgdb_ind_12'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_12').style.opacity = 1; document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_12').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_12').style.opacity = 0; document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_12').style.opacity = 0;\"\n",
|
|
" >just </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.002</div\n",
|
|
" ><div id='_tp_fmavpvszkmgyuenmjgdb_ind_13'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_13').style.opacity = 1; document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_13').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_13').style.opacity = 0; document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_13').style.opacity = 0;\"\n",
|
|
" >from </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.002</div\n",
|
|
" ><div id='_tp_fmavpvszkmgyuenmjgdb_ind_14'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_14').style.opacity = 1; document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_14').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_14').style.opacity = 0; document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_14').style.opacity = 0;\"\n",
|
|
" >being </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.002</div\n",
|
|
" ><div id='_tp_fmavpvszkmgyuenmjgdb_ind_15'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_15').style.opacity = 1; document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_15').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_15').style.opacity = 0; document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_15').style.opacity = 0;\"\n",
|
|
" >around </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.004</div\n",
|
|
" ><div id='_tp_fmavpvszkmgyuenmjgdb_ind_16'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_16').style.opacity = 1; document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_16').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_16').style.opacity = 0; document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_16').style.opacity = 0;\"\n",
|
|
" >someone </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.001</div\n",
|
|
" ><div id='_tp_fmavpvszkmgyuenmjgdb_ind_17'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_17').style.opacity = 1; document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_17').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_17').style.opacity = 0; document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_17').style.opacity = 0;\"\n",
|
|
" >who </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.011</div\n",
|
|
" ><div id='_tp_fmavpvszkmgyuenmjgdb_ind_18'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_18').style.opacity = 1; document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_18').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_18').style.opacity = 0; document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_18').style.opacity = 0;\"\n",
|
|
" >cares </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.002</div\n",
|
|
" ><div id='_tp_fmavpvszkmgyuenmjgdb_ind_19'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_19').style.opacity = 1; document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_19').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_19').style.opacity = 0; document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_19').style.opacity = 0;\"\n",
|
|
" >and </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.006</div\n",
|
|
" ><div id='_tp_fmavpvszkmgyuenmjgdb_ind_20'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_20').style.opacity = 1; document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_20').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_20').style.opacity = 0; document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_20').style.opacity = 0;\"\n",
|
|
" >is </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.002</div\n",
|
|
" ><div id='_tp_fmavpvszkmgyuenmjgdb_ind_21'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_21').style.opacity = 1; document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_21').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_21').style.opacity = 0; document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_21').style.opacity = 0;\"\n",
|
|
" >awake</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_fmavpvszkmgyuenmjgdb_ind_22'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_22').style.opacity = 1; document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_22').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_fmavpvszkmgyuenmjgdb_ind_22').style.opacity = 0; document.getElementById('_fs_fmavpvszkmgyuenmjgdb_ind_22').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_mqwalcomvemcxolagrxb_output_1' style='display: none';><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"48.705281698548966%\" y1=\"33\" x2=\"48.705281698548966%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"48.705281698548966%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.3</text><line x1=\"37.053446541506865%\" y1=\"33\" x2=\"37.053446541506865%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"37.053446541506865%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.1</text><line x1=\"25.40161138446477%\" y1=\"33\" x2=\"25.40161138446477%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"25.40161138446477%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.1</text><line x1=\"13.749776227422668%\" y1=\"33\" x2=\"13.749776227422668%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"13.749776227422668%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.3</text><line x1=\"60.357116855591066%\" y1=\"33\" x2=\"60.357116855591066%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"60.357116855591066%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.5</text><line x1=\"72.00895201263315%\" y1=\"33\" x2=\"72.00895201263315%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"72.00895201263315%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.7</text><line x1=\"83.66078716967526%\" y1=\"33\" x2=\"83.66078716967526%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"83.66078716967526%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.9</text><line x1=\"42.89619905838512%\" y1=\"33\" x2=\"42.89619905838512%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"42.89619905838512%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.200289</text><text x=\"42.89619905838512%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.200289</text><text x=\"42.89619905838512%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"31.296943054571813%\" y1=\"33\" x2=\"31.296943054571813%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"31.296943054571813%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.00119147</text><text x=\"31.296943054571813%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.00119147</text><text x=\"31.296943054571813%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">joy</tspan>(inputs)</text><rect x=\"6.18276184274641%\" width=\"25.114181211825407%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"16.722805919871238%\" x2=\"31.296943054571813%\" y1=\"60\" y2=\"60\" id=\"_fb_xkhuuqfdlkslgqlwzliw_ind_11\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"24.009874487221524%\" y=\"71\" font-size=\"12px\" id=\"_fs_xkhuuqfdlkslgqlwzliw_ind_11\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.25</text><svg x=\"16.722805919871238%\" y=\"40\" height=\"20\" width=\"14.574137134700575%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeful</text> </svg></svg><line x1=\"13.70144700194565%\" x2=\"16.722805919871238%\" y1=\"60\" y2=\"60\" id=\"_fb_xkhuuqfdlkslgqlwzliw_ind_21\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"15.212126460908443%\" y=\"71\" font-size=\"12px\" id=\"_fs_xkhuuqfdlkslgqlwzliw_ind_21\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.052</text><svg x=\"13.70144700194565%\" y=\"40\" height=\"20\" width=\"3.0213589179255873%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">awake</text> </svg></svg><line x1=\"12.00644944374938%\" x2=\"13.70144700194565%\" y1=\"60\" y2=\"60\" id=\"_fb_xkhuuqfdlkslgqlwzliw_ind_18\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"12.853948222847515%\" y=\"71\" font-size=\"12px\" id=\"_fs_xkhuuqfdlkslgqlwzliw_ind_18\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.029</text><svg x=\"12.00644944374938%\" y=\"40\" height=\"20\" width=\"1.6949975581962704%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">cares</text> </svg></svg><line x1=\"10.721931544799084%\" x2=\"12.00644944374938%\" y1=\"60\" y2=\"60\" id=\"_fb_xkhuuqfdlkslgqlwzliw_ind_12\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"11.364190494274233%\" y=\"71\" font-size=\"12px\" id=\"_fs_xkhuuqfdlkslgqlwzliw_ind_12\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.022</text><svg x=\"10.721931544799084%\" y=\"40\" height=\"20\" width=\"1.2845178989502966%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">just</text> </svg></svg><line x1=\"9.625997080805684%\" x2=\"10.721931544799084%\" y1=\"60\" y2=\"60\" id=\"_fb_xkhuuqfdlkslgqlwzliw_ind_20\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"10.173964312802383%\" y=\"71\" font-size=\"12px\" id=\"_fs_xkhuuqfdlkslgqlwzliw_ind_20\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.019</text><svg x=\"9.625997080805684%\" y=\"40\" height=\"20\" width=\"1.0959344639933999%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">is</text> </svg></svg><line x1=\"8.616281713735367%\" x2=\"9.625997080805684%\" y1=\"60\" y2=\"60\" id=\"_fb_xkhuuqfdlkslgqlwzliw_ind_19\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"9.121139397270525%\" y=\"71\" font-size=\"12px\" id=\"_fs_xkhuuqfdlkslgqlwzliw_ind_19\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.017</text><svg x=\"8.616281713735367%\" y=\"40\" height=\"20\" width=\"1.0097153670703172%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">and</text> </svg></svg><line x1=\"7.977440582169433%\" x2=\"8.616281713735367%\" y1=\"60\" y2=\"60\" id=\"_fb_xkhuuqfdlkslgqlwzliw_ind_16\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.2968611479524%\" y=\"71\" font-size=\"12px\" id=\"_fs_xkhuuqfdlkslgqlwzliw_ind_16\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.011</text><svg x=\"7.977440582169433%\" y=\"40\" height=\"20\" width=\"0.6388411315659335%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">someone</text> </svg></svg><line x1=\"7.391094436602265%\" x2=\"7.977440582169433%\" y1=\"60\" y2=\"60\" id=\"_fb_xkhuuqfdlkslgqlwzliw_ind_6\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"7.684267509385849%\" y=\"71\" font-size=\"12px\" id=\"_fs_xkhuuqfdlkslgqlwzliw_ind_6\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.01</text><svg x=\"7.391094436602265%\" y=\"40\" height=\"20\" width=\"0.5863461455671679%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><line x1=\"6.864536533706043%\" x2=\"7.391094436602265%\" y1=\"60\" y2=\"60\" id=\"_fb_xkhuuqfdlkslgqlwzliw_ind_17\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"7.127815485154154%\" y=\"71\" font-size=\"12px\" id=\"_fs_xkhuuqfdlkslgqlwzliw_ind_17\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.009</text><svg x=\"6.864536533706043%\" y=\"40\" height=\"20\" width=\"0.5265579028962222%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">who</text> </svg></svg><line x1=\"6.562190327538121%\" x2=\"6.864536533706043%\" y1=\"60\" y2=\"60\" id=\"_fb_xkhuuqfdlkslgqlwzliw_ind_2\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"6.713363430622082%\" y=\"71\" font-size=\"12px\" id=\"_fs_xkhuuqfdlkslgqlwzliw_ind_2\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.005</text><svg x=\"6.562190327538121%\" y=\"40\" height=\"20\" width=\"0.30234620616792185%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">can</text> </svg></svg><line x1=\"6.410820506678169%\" x2=\"6.562190327538121%\" y1=\"60\" y2=\"60\" id=\"_fb_xkhuuqfdlkslgqlwzliw_ind_14\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"6.486505417108145%\" y=\"71\" font-size=\"12px\" id=\"_fs_xkhuuqfdlkslgqlwzliw_ind_14\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.003</text><svg x=\"6.410820506678169%\" y=\"40\" height=\"20\" width=\"0.15136982085995232%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">being</text> </svg></svg><line x1=\"6.294218534578376%\" x2=\"6.410820506678169%\" y1=\"60\" y2=\"60\" id=\"_fb_xkhuuqfdlkslgqlwzliw_ind_13\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"6.352519520628272%\" y=\"71\" font-size=\"12px\" id=\"_fs_xkhuuqfdlkslgqlwzliw_ind_13\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.002</text><svg x=\"6.294218534578376%\" y=\"40\" height=\"20\" width=\"0.11660197209979284%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><line x1=\"6.18276184274641%\" x2=\"6.294218534578376%\" y1=\"60\" y2=\"60\" id=\"_fb_xkhuuqfdlkslgqlwzliw_ind_8\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"6.238490188662393%\" y=\"71\" font-size=\"12px\" id=\"_fs_xkhuuqfdlkslgqlwzliw_ind_8\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.002</text><svg x=\"6.18276184274641%\" y=\"40\" height=\"20\" width=\"0.11145669183196638%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"16.722805919871238%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"16.722805919871238%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"16.722805919871238%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"16.722805919871238%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"16.722805919871238%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"16.722805919871238%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"16.722805919871238%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"16.722805919871238%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"13.70144700194565%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"13.70144700194565%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"13.70144700194565%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"13.70144700194565%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"13.70144700194565%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"13.70144700194565%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"13.70144700194565%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"13.70144700194565%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"12.00644944374938%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"12.00644944374938%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"12.00644944374938%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"12.00644944374938%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"12.00644944374938%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"12.00644944374938%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"12.00644944374938%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"12.00644944374938%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"10.721931544799084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"10.721931544799084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"10.721931544799084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"10.721931544799084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"10.721931544799084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"10.721931544799084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"10.721931544799084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"10.721931544799084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"9.625997080805684%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"9.625997080805684%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"9.625997080805684%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"9.625997080805684%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"9.625997080805684%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"9.625997080805684%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"9.625997080805684%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"9.625997080805684%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.616281713735367%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.616281713735367%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.616281713735367%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.616281713735367%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.616281713735367%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.616281713735367%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.616281713735367%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.616281713735367%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"7.977440582169433%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"7.977440582169433%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"7.977440582169433%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"7.977440582169433%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"7.977440582169433%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"7.977440582169433%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"7.977440582169433%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"7.977440582169433%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"7.391094436602265%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"7.391094436602265%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"7.391094436602265%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"7.391094436602265%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"7.391094436602265%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"7.391094436602265%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"7.391094436602265%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"7.391094436602265%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"6.864536533706043%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"6.864536533706043%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"6.864536533706043%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"6.864536533706043%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"6.864536533706043%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"6.864536533706043%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"6.864536533706043%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"6.864536533706043%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"6.562190327538121%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"6.562190327538121%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"6.562190327538121%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"6.562190327538121%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"6.562190327538121%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"6.562190327538121%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"6.562190327538121%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"6.562190327538121%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"6.410820506678169%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"6.410820506678169%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"6.410820506678169%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"6.410820506678169%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"6.410820506678169%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"6.410820506678169%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"6.410820506678169%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"6.410820506678169%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"6.294218534578376%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"6.294218534578376%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"6.294218534578376%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"6.294218534578376%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"6.294218534578376%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"6.294218534578376%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"6.294218534578376%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"6.294218534578376%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"31.296943054571813%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"6.18276184274641%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"31.296943054571813%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"16.722805919871238%\" y=\"40\" height=\"20\" width=\"14.574137134700575%\" onmouseover=\"document.getElementById('_tp_xkhuuqfdlkslgqlwzliw_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_11').style.opacity = 1;document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xkhuuqfdlkslgqlwzliw_ind_11').style.textDecoration = 'none';document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_11').style.opacity = 0;document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"16.722805919871238%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"13.70144700194565%\" y=\"40\" height=\"20\" width=\"3.0213589179255873%\" onmouseover=\"document.getElementById('_tp_xkhuuqfdlkslgqlwzliw_ind_21').style.textDecoration = 'underline';document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_21').style.opacity = 1;document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_21').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xkhuuqfdlkslgqlwzliw_ind_21').style.textDecoration = 'none';document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_21').style.opacity = 0;document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_21').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"13.70144700194565%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"12.00644944374938%\" y=\"40\" height=\"20\" width=\"1.6949975581962704%\" onmouseover=\"document.getElementById('_tp_xkhuuqfdlkslgqlwzliw_ind_18').style.textDecoration = 'underline';document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_18').style.opacity = 1;document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_18').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xkhuuqfdlkslgqlwzliw_ind_18').style.textDecoration = 'none';document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_18').style.opacity = 0;document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_18').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"12.00644944374938%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"10.721931544799084%\" y=\"40\" height=\"20\" width=\"1.2845178989502966%\" onmouseover=\"document.getElementById('_tp_xkhuuqfdlkslgqlwzliw_ind_12').style.textDecoration = 'underline';document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_12').style.opacity = 1;document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_12').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xkhuuqfdlkslgqlwzliw_ind_12').style.textDecoration = 'none';document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_12').style.opacity = 0;document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_12').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"10.721931544799084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"9.625997080805684%\" y=\"40\" height=\"20\" width=\"1.0959344639933999%\" onmouseover=\"document.getElementById('_tp_xkhuuqfdlkslgqlwzliw_ind_20').style.textDecoration = 'underline';document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_20').style.opacity = 1;document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_20').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xkhuuqfdlkslgqlwzliw_ind_20').style.textDecoration = 'none';document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_20').style.opacity = 0;document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_20').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"9.625997080805684%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.616281713735367%\" y=\"40\" height=\"20\" width=\"1.0097153670703172%\" onmouseover=\"document.getElementById('_tp_xkhuuqfdlkslgqlwzliw_ind_19').style.textDecoration = 'underline';document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_19').style.opacity = 1;document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_19').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xkhuuqfdlkslgqlwzliw_ind_19').style.textDecoration = 'none';document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_19').style.opacity = 0;document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_19').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"8.616281713735367%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"7.977440582169433%\" y=\"40\" height=\"20\" width=\"0.6388411315659335%\" onmouseover=\"document.getElementById('_tp_xkhuuqfdlkslgqlwzliw_ind_16').style.textDecoration = 'underline';document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_16').style.opacity = 1;document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_16').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xkhuuqfdlkslgqlwzliw_ind_16').style.textDecoration = 'none';document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_16').style.opacity = 0;document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_16').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"7.977440582169433%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"7.391094436602265%\" y=\"40\" height=\"20\" width=\"0.5863461455671679%\" onmouseover=\"document.getElementById('_tp_xkhuuqfdlkslgqlwzliw_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_6').style.opacity = 1;document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xkhuuqfdlkslgqlwzliw_ind_6').style.textDecoration = 'none';document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_6').style.opacity = 0;document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"7.391094436602265%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"6.864536533706043%\" y=\"40\" height=\"20\" width=\"0.5265579028962222%\" onmouseover=\"document.getElementById('_tp_xkhuuqfdlkslgqlwzliw_ind_17').style.textDecoration = 'underline';document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_17').style.opacity = 1;document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_17').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xkhuuqfdlkslgqlwzliw_ind_17').style.textDecoration = 'none';document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_17').style.opacity = 0;document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_17').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"6.864536533706043%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"6.562190327538121%\" y=\"40\" height=\"20\" width=\"0.30234620616792185%\" onmouseover=\"document.getElementById('_tp_xkhuuqfdlkslgqlwzliw_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_2').style.opacity = 1;document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xkhuuqfdlkslgqlwzliw_ind_2').style.textDecoration = 'none';document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_2').style.opacity = 0;document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"6.562190327538121%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"6.410820506678169%\" y=\"40\" height=\"20\" width=\"0.15136982085995232%\" onmouseover=\"document.getElementById('_tp_xkhuuqfdlkslgqlwzliw_ind_14').style.textDecoration = 'underline';document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_14').style.opacity = 1;document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_14').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xkhuuqfdlkslgqlwzliw_ind_14').style.textDecoration = 'none';document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_14').style.opacity = 0;document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_14').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"6.410820506678169%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"6.294218534578376%\" y=\"40\" height=\"20\" width=\"0.11660197209979284%\" onmouseover=\"document.getElementById('_tp_xkhuuqfdlkslgqlwzliw_ind_13').style.textDecoration = 'underline';document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_13').style.opacity = 1;document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_13').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xkhuuqfdlkslgqlwzliw_ind_13').style.textDecoration = 'none';document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_13').style.opacity = 0;document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_13').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"6.18276184274641%\" y=\"40\" height=\"20\" width=\"0.11145669183196638%\" onmouseover=\"document.getElementById('_tp_xkhuuqfdlkslgqlwzliw_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_8').style.opacity = 1;document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xkhuuqfdlkslgqlwzliw_ind_8').style.textDecoration = 'none';document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_8').style.opacity = 0;document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"31.296943054571813%\" width=\"36.71343721563871%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"31.296943054571813%\" x2=\"53.28137453276189%\" y1=\"60\" y2=\"60\" id=\"_fb_xkhuuqfdlkslgqlwzliw_ind_7\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"42.28915879366685%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_xkhuuqfdlkslgqlwzliw_ind_7\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.377</text><svg x=\"31.296943054571813%\" y=\"40\" height=\"20\" width=\"21.984431478190075%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeless</text> </svg></svg><line x1=\"53.28137453276189%\" x2=\"65.09836081636311%\" y1=\"60\" y2=\"60\" id=\"_fb_xkhuuqfdlkslgqlwzliw_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"59.1898676745625%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_xkhuuqfdlkslgqlwzliw_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.203</text><svg x=\"53.28137453276189%\" y=\"40\" height=\"20\" width=\"11.816986283601224%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feeling</text> </svg></svg><line x1=\"65.09836081636311%\" x2=\"66.06387127872752%\" y1=\"60\" y2=\"60\" id=\"_fb_xkhuuqfdlkslgqlwzliw_ind_15\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"65.58111604754532%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_xkhuuqfdlkslgqlwzliw_ind_15\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.017</text><svg x=\"65.09836081636311%\" y=\"40\" height=\"20\" width=\"0.9655104623644064%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">around</text> </svg></svg><line x1=\"66.06387127872752%\" x2=\"66.95867496068422%\" y1=\"60\" y2=\"60\" id=\"_fb_xkhuuqfdlkslgqlwzliw_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"66.51127311970586%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_xkhuuqfdlkslgqlwzliw_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.015</text><svg x=\"66.06387127872752%\" y=\"40\" height=\"20\" width=\"0.8948036819567022%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><line x1=\"66.95867496068422%\" x2=\"67.81117854369415%\" y1=\"60\" y2=\"60\" id=\"_fb_xkhuuqfdlkslgqlwzliw_ind_10\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"67.38492675218919%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_xkhuuqfdlkslgqlwzliw_ind_10\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.015</text><svg x=\"66.95867496068422%\" y=\"40\" height=\"20\" width=\"0.8525035830099341%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">damned</text> </svg></svg><line x1=\"67.81117854369415%\" x2=\"67.88967510626475%\" y1=\"60\" y2=\"60\" id=\"_fb_xkhuuqfdlkslgqlwzliw_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"67.85042682497945%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_xkhuuqfdlkslgqlwzliw_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.001</text><svg x=\"67.81117854369415%\" y=\"40\" height=\"20\" width=\"0.07849656257059223%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"67.88967510626475%\" x2=\"67.96443432908706%\" y1=\"60\" y2=\"60\" id=\"_fb_xkhuuqfdlkslgqlwzliw_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"67.9270547176759%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_xkhuuqfdlkslgqlwzliw_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.001</text><svg x=\"67.88967510626475%\" y=\"40\" height=\"20\" width=\"0.0747592228223084%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">go</text> </svg></svg><line x1=\"67.96443432908706%\" x2=\"68.00623057664184%\" y1=\"60\" y2=\"60\" id=\"_fb_xkhuuqfdlkslgqlwzliw_ind_9\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"67.98533245286444%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_xkhuuqfdlkslgqlwzliw_ind_9\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.001</text><svg x=\"67.96443432908706%\" y=\"40\" height=\"20\" width=\"0.04179624755478528%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><line x1=\"68.00623057664184%\" x2=\"68.00970466908753%\" y1=\"60\" y2=\"60\" id=\"_fb_xkhuuqfdlkslgqlwzliw_ind_22\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"68.00796762286468%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_xkhuuqfdlkslgqlwzliw_ind_22\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"68.00623057664184%\" y=\"40\" height=\"20\" width=\"0.0034740924456855282%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><line x1=\"68.00970466908753%\" x2=\"68.01038027021053%\" y1=\"60\" y2=\"60\" id=\"_fb_xkhuuqfdlkslgqlwzliw_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"68.01004246964902%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_xkhuuqfdlkslgqlwzliw_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"68.00970466908753%\" y=\"40\" height=\"20\" width=\"0.0006756011230066861%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"53.28137453276189%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"53.28137453276189%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"53.28137453276189%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"53.28137453276189%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"53.28137453276189%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"53.28137453276189%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"53.28137453276189%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"53.28137453276189%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"65.09836081636311%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"65.09836081636311%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"65.09836081636311%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"65.09836081636311%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"65.09836081636311%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"65.09836081636311%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"65.09836081636311%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"65.09836081636311%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"66.06387127872752%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"66.06387127872752%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"66.06387127872752%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"66.06387127872752%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"66.06387127872752%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"66.06387127872752%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"66.06387127872752%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"66.06387127872752%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"66.95867496068422%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"66.95867496068422%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"66.95867496068422%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"66.95867496068422%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"66.95867496068422%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"66.95867496068422%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"66.95867496068422%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"66.95867496068422%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"67.81117854369415%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"67.81117854369415%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"67.81117854369415%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"67.81117854369415%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"67.81117854369415%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"67.81117854369415%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"67.81117854369415%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"67.81117854369415%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"67.88967510626475%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"67.88967510626475%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"67.88967510626475%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"67.88967510626475%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"67.88967510626475%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"67.88967510626475%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"67.88967510626475%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"67.88967510626475%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"67.96443432908706%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"67.96443432908706%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"67.96443432908706%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"67.96443432908706%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"67.96443432908706%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"67.96443432908706%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"67.96443432908706%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"67.96443432908706%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"68.00623057664184%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"68.00623057664184%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"68.00623057664184%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"68.00623057664184%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"68.00623057664184%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"68.00623057664184%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"68.00623057664184%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"68.00623057664184%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"68.00970466908753%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"68.00970466908753%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"68.00970466908753%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"68.00970466908753%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"68.00970466908753%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"68.00970466908753%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"68.00970466908753%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"68.00970466908753%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"31.296943054571813%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"68.01038027021053%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"53.28137453276189%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"31.296943054571813%\" y=\"40\" height=\"20\" width=\"21.984431478190075%\" onmouseover=\"document.getElementById('_tp_xkhuuqfdlkslgqlwzliw_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_7').style.opacity = 1;document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xkhuuqfdlkslgqlwzliw_ind_7').style.textDecoration = 'none';document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_7').style.opacity = 0;document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"65.09836081636311%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"53.28137453276189%\" y=\"40\" height=\"20\" width=\"11.816986283601224%\" onmouseover=\"document.getElementById('_tp_xkhuuqfdlkslgqlwzliw_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_5').style.opacity = 1;document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xkhuuqfdlkslgqlwzliw_ind_5').style.textDecoration = 'none';document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_5').style.opacity = 0;document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"66.06387127872752%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"65.09836081636311%\" y=\"40\" height=\"20\" width=\"0.9655104623644064%\" onmouseover=\"document.getElementById('_tp_xkhuuqfdlkslgqlwzliw_ind_15').style.textDecoration = 'underline';document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_15').style.opacity = 1;document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_15').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xkhuuqfdlkslgqlwzliw_ind_15').style.textDecoration = 'none';document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_15').style.opacity = 0;document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_15').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"66.95867496068422%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"66.06387127872752%\" y=\"40\" height=\"20\" width=\"0.8948036819567022%\" onmouseover=\"document.getElementById('_tp_xkhuuqfdlkslgqlwzliw_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_4').style.opacity = 1;document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xkhuuqfdlkslgqlwzliw_ind_4').style.textDecoration = 'none';document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_4').style.opacity = 0;document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"67.81117854369415%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"66.95867496068422%\" y=\"40\" height=\"20\" width=\"0.8525035830099341%\" onmouseover=\"document.getElementById('_tp_xkhuuqfdlkslgqlwzliw_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_10').style.opacity = 1;document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xkhuuqfdlkslgqlwzliw_ind_10').style.textDecoration = 'none';document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_10').style.opacity = 0;document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"67.88967510626475%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"67.81117854369415%\" y=\"40\" height=\"20\" width=\"0.07849656257059223%\" onmouseover=\"document.getElementById('_tp_xkhuuqfdlkslgqlwzliw_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_1').style.opacity = 1;document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xkhuuqfdlkslgqlwzliw_ind_1').style.textDecoration = 'none';document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_1').style.opacity = 0;document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"67.96443432908706%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"67.88967510626475%\" y=\"40\" height=\"20\" width=\"0.0747592228223084%\" onmouseover=\"document.getElementById('_tp_xkhuuqfdlkslgqlwzliw_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_3').style.opacity = 1;document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xkhuuqfdlkslgqlwzliw_ind_3').style.textDecoration = 'none';document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_3').style.opacity = 0;document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"68.00623057664184%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"67.96443432908706%\" y=\"40\" height=\"20\" width=\"0.04179624755478528%\" onmouseover=\"document.getElementById('_tp_xkhuuqfdlkslgqlwzliw_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_9').style.opacity = 1;document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xkhuuqfdlkslgqlwzliw_ind_9').style.textDecoration = 'none';document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_9').style.opacity = 0;document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"68.00970466908753%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"68.00623057664184%\" y=\"40\" height=\"20\" width=\"0.0034740924456855282%\" onmouseover=\"document.getElementById('_tp_xkhuuqfdlkslgqlwzliw_ind_22').style.textDecoration = 'underline';document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_22').style.opacity = 1;document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_22').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xkhuuqfdlkslgqlwzliw_ind_22').style.textDecoration = 'none';document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_22').style.opacity = 0;document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_22').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"68.00970466908753%\" y=\"40\" height=\"20\" width=\"0.0006756011230066861%\" onmouseover=\"document.getElementById('_tp_xkhuuqfdlkslgqlwzliw_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_0').style.opacity = 1;document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xkhuuqfdlkslgqlwzliw_ind_0').style.textDecoration = 'none';document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_0').style.opacity = 0;document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_xkhuuqfdlkslgqlwzliw_ind_0'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_0').style.opacity = 1; document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_0').style.opacity = 0; document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.001</div\n",
|
|
" ><div id='_tp_xkhuuqfdlkslgqlwzliw_ind_1'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_1').style.opacity = 1; document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_1').style.opacity = 0; document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_1').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.005</div\n",
|
|
" ><div id='_tp_xkhuuqfdlkslgqlwzliw_ind_2'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_2').style.opacity = 1; document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_2').style.opacity = 0; document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_2').style.opacity = 0;\"\n",
|
|
" >can </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.001</div\n",
|
|
" ><div id='_tp_xkhuuqfdlkslgqlwzliw_ind_3'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_3').style.opacity = 1; document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_3').style.opacity = 0; document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_3').style.opacity = 0;\"\n",
|
|
" >go </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.015</div\n",
|
|
" ><div id='_tp_xkhuuqfdlkslgqlwzliw_ind_4'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_4').style.opacity = 1; document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_4').style.opacity = 0; document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_4').style.opacity = 0;\"\n",
|
|
" >from </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.203</div\n",
|
|
" ><div id='_tp_xkhuuqfdlkslgqlwzliw_ind_5'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.23537334125569417); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_5').style.opacity = 1; document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_5').style.opacity = 0; document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_5').style.opacity = 0;\"\n",
|
|
" >feeling </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.01</div\n",
|
|
" ><div id='_tp_xkhuuqfdlkslgqlwzliw_ind_6'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_6').style.opacity = 1; document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_6').style.opacity = 0; document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_6').style.opacity = 0;\"\n",
|
|
" >so </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.377</div\n",
|
|
" ><div id='_tp_xkhuuqfdlkslgqlwzliw_ind_7'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.440324816795405); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_7').style.opacity = 1; document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_7').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_7').style.opacity = 0; document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_7').style.opacity = 0;\"\n",
|
|
" >hopeless </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.002</div\n",
|
|
" ><div id='_tp_xkhuuqfdlkslgqlwzliw_ind_8'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_8').style.opacity = 1; document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_8').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_8').style.opacity = 0; document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_8').style.opacity = 0;\"\n",
|
|
" >to </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.001</div\n",
|
|
" ><div id='_tp_xkhuuqfdlkslgqlwzliw_ind_9'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_9').style.opacity = 1; document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_9').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_9').style.opacity = 0; document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_9').style.opacity = 0;\"\n",
|
|
" >so </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.015</div\n",
|
|
" ><div id='_tp_xkhuuqfdlkslgqlwzliw_ind_10'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_10').style.opacity = 1; document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_10').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_10').style.opacity = 0; document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_10').style.opacity = 0;\"\n",
|
|
" >damned </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.25</div\n",
|
|
" ><div id='_tp_xkhuuqfdlkslgqlwzliw_ind_11'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.29055258467023165); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_11').style.opacity = 1; document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_11').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_11').style.opacity = 0; document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_11').style.opacity = 0;\"\n",
|
|
" >hopeful </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.022</div\n",
|
|
" ><div id='_tp_xkhuuqfdlkslgqlwzliw_ind_12'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.02253911665676371); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_12').style.opacity = 1; document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_12').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_12').style.opacity = 0; document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_12').style.opacity = 0;\"\n",
|
|
" >just </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.002</div\n",
|
|
" ><div id='_tp_xkhuuqfdlkslgqlwzliw_ind_13'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_13').style.opacity = 1; document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_13').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_13').style.opacity = 0; document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_13').style.opacity = 0;\"\n",
|
|
" >from </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.003</div\n",
|
|
" ><div id='_tp_xkhuuqfdlkslgqlwzliw_ind_14'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_14').style.opacity = 1; document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_14').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_14').style.opacity = 0; document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_14').style.opacity = 0;\"\n",
|
|
" >being </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.017</div\n",
|
|
" ><div id='_tp_xkhuuqfdlkslgqlwzliw_ind_15'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_15').style.opacity = 1; document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_15').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_15').style.opacity = 0; document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_15').style.opacity = 0;\"\n",
|
|
" >around </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.011</div\n",
|
|
" ><div id='_tp_xkhuuqfdlkslgqlwzliw_ind_16'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_16').style.opacity = 1; document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_16').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_16').style.opacity = 0; document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_16').style.opacity = 0;\"\n",
|
|
" >someone </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.009</div\n",
|
|
" ><div id='_tp_xkhuuqfdlkslgqlwzliw_ind_17'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_17').style.opacity = 1; document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_17').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_17').style.opacity = 0; document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_17').style.opacity = 0;\"\n",
|
|
" >who </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.029</div\n",
|
|
" ><div id='_tp_xkhuuqfdlkslgqlwzliw_ind_18'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.030421865715983164); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_18').style.opacity = 1; document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_18').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_18').style.opacity = 0; document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_18').style.opacity = 0;\"\n",
|
|
" >cares </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.017</div\n",
|
|
" ><div id='_tp_xkhuuqfdlkslgqlwzliw_ind_19'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.014656367597544035); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_19').style.opacity = 1; document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_19').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_19').style.opacity = 0; document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_19').style.opacity = 0;\"\n",
|
|
" >and </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.019</div\n",
|
|
" ><div id='_tp_xkhuuqfdlkslgqlwzliw_ind_20'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.014656367597544035); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_20').style.opacity = 1; document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_20').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_20').style.opacity = 0; document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_20').style.opacity = 0;\"\n",
|
|
" >is </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.052</div\n",
|
|
" ><div id='_tp_xkhuuqfdlkslgqlwzliw_ind_21'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.05407011289364243); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_21').style.opacity = 1; document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_21').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_21').style.opacity = 0; document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_21').style.opacity = 0;\"\n",
|
|
" >awake</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_xkhuuqfdlkslgqlwzliw_ind_22'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_22').style.opacity = 1; document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_22').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xkhuuqfdlkslgqlwzliw_ind_22').style.opacity = 0; document.getElementById('_fs_xkhuuqfdlkslgqlwzliw_ind_22').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_mqwalcomvemcxolagrxb_output_1_zoom' style='display: none;'><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"49.94187272541846%\" y1=\"33\" x2=\"49.94187272541846%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"49.94187272541846%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.1</text><line x1=\"34.23654022255814%\" y1=\"33\" x2=\"34.23654022255814%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"34.23654022255814%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.1</text><line x1=\"18.531207719697807%\" y1=\"33\" x2=\"18.531207719697807%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"18.531207719697807%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.3</text><line x1=\"65.64720522827879%\" y1=\"33\" x2=\"65.64720522827879%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"65.64720522827879%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.3</text><line x1=\"81.35253773113912%\" y1=\"33\" x2=\"81.35253773113912%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"81.35253773113912%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.5</text><line x1=\"57.8172305358178%\" y1=\"33\" x2=\"57.8172305358178%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"57.8172305358178%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.200289</text><text x=\"57.8172305358178%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.200289</text><text x=\"57.8172305358178%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"42.18276867891558%\" y1=\"33\" x2=\"42.18276867891558%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"42.18276867891558%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.00119147</text><text x=\"42.18276867891558%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.00119147</text><text x=\"42.18276867891558%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">joy</tspan>(inputs)</text><rect x=\"8.331743398110481%\" width=\"33.8510252808051%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"22.538509507911098%\" x2=\"42.18276867891558%\" y1=\"60\" y2=\"60\" id=\"_fb_uplzmujucoasbprjsiix_ind_11\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"32.36063909341334%\" y=\"71\" font-size=\"12px\" id=\"_fs_uplzmujucoasbprjsiix_ind_11\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.25</text><svg x=\"22.538509507911098%\" y=\"40\" height=\"20\" width=\"19.64425917100448%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeful</text> </svg></svg><line x1=\"18.46606548712309%\" x2=\"22.538509507911098%\" y1=\"60\" y2=\"60\" id=\"_fb_uplzmujucoasbprjsiix_ind_21\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"20.502287497517095%\" y=\"71\" font-size=\"12px\" id=\"_fs_uplzmujucoasbprjsiix_ind_21\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.052</text><svg x=\"18.46606548712309%\" y=\"40\" height=\"20\" width=\"4.072444020788009%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">awake</text> </svg></svg><line x1=\"16.181403896547806%\" x2=\"18.46606548712309%\" y1=\"60\" y2=\"60\" id=\"_fb_uplzmujucoasbprjsiix_ind_18\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"17.323734691835448%\" y=\"71\" font-size=\"12px\" id=\"_fs_uplzmujucoasbprjsiix_ind_18\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.029</text><svg x=\"16.181403896547806%\" y=\"40\" height=\"20\" width=\"2.2846615905752827%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">cares</text> </svg></svg><line x1=\"14.450021634698917%\" x2=\"16.181403896547806%\" y1=\"60\" y2=\"60\" id=\"_fb_uplzmujucoasbprjsiix_ind_12\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"15.315712765623362%\" y=\"71\" font-size=\"12px\" id=\"_fs_uplzmujucoasbprjsiix_ind_12\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.022</text><svg x=\"14.450021634698917%\" y=\"40\" height=\"20\" width=\"1.7313822618488892%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">just</text> </svg></svg><line x1=\"12.972828134586807%\" x2=\"14.450021634698917%\" y1=\"60\" y2=\"60\" id=\"_fb_uplzmujucoasbprjsiix_ind_20\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"13.711424884642863%\" y=\"71\" font-size=\"12px\" id=\"_fs_uplzmujucoasbprjsiix_ind_20\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.019</text><svg x=\"12.972828134586807%\" y=\"40\" height=\"20\" width=\"1.4771935001121097%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">is</text> </svg></svg><line x1=\"11.611848052105737%\" x2=\"12.972828134586807%\" y1=\"60\" y2=\"60\" id=\"_fb_uplzmujucoasbprjsiix_ind_19\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"12.292338093346272%\" y=\"71\" font-size=\"12px\" id=\"_fs_uplzmujucoasbprjsiix_ind_19\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.017</text><svg x=\"11.611848052105737%\" y=\"40\" height=\"20\" width=\"1.3609800824810705%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">and</text> </svg></svg><line x1=\"10.750763746284376%\" x2=\"11.611848052105737%\" y1=\"60\" y2=\"60\" id=\"_fb_uplzmujucoasbprjsiix_ind_16\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"11.181305899195056%\" y=\"71\" font-size=\"12px\" id=\"_fs_uplzmujucoasbprjsiix_ind_16\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.011</text><svg x=\"10.750763746284376%\" y=\"40\" height=\"20\" width=\"0.8610843058213611%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">someone</text> </svg></svg><line x1=\"9.960436638683875%\" x2=\"10.750763746284376%\" y1=\"60\" y2=\"60\" id=\"_fb_uplzmujucoasbprjsiix_ind_6\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"10.355600192484125%\" y=\"71\" font-size=\"12px\" id=\"_fs_uplzmujucoasbprjsiix_ind_6\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.01</text><svg x=\"9.960436638683875%\" y=\"40\" height=\"20\" width=\"0.7903271076005005%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><line x1=\"9.250697199742708%\" x2=\"9.960436638683875%\" y1=\"60\" y2=\"60\" id=\"_fb_uplzmujucoasbprjsiix_ind_17\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"9.605566919213292%\" y=\"71\" font-size=\"12px\" id=\"_fs_uplzmujucoasbprjsiix_ind_17\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.009</text><svg x=\"9.250697199742708%\" y=\"40\" height=\"20\" width=\"0.7097394389411669%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">who</text> </svg></svg><line x1=\"8.843169318096038%\" x2=\"9.250697199742708%\" y1=\"60\" y2=\"60\" id=\"_fb_uplzmujucoasbprjsiix_ind_2\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"9.046933258919374%\" y=\"71\" font-size=\"12px\" id=\"_fs_uplzmujucoasbprjsiix_ind_2\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.005</text><svg x=\"8.843169318096038%\" y=\"40\" height=\"20\" width=\"0.4075278816466703%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">can</text> </svg></svg><line x1=\"8.639140224355627%\" x2=\"8.843169318096038%\" y1=\"60\" y2=\"60\" id=\"_fb_uplzmujucoasbprjsiix_ind_14\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.741154771225833%\" y=\"71\" font-size=\"12px\" id=\"_fs_uplzmujucoasbprjsiix_ind_14\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.003</text><svg x=\"8.639140224355627%\" y=\"40\" height=\"20\" width=\"0.20402909374041123%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">being</text> </svg></svg><line x1=\"8.48197418847932%\" x2=\"8.639140224355627%\" y1=\"60\" y2=\"60\" id=\"_fb_uplzmujucoasbprjsiix_ind_13\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.560557206417474%\" y=\"71\" font-size=\"12px\" id=\"_fs_uplzmujucoasbprjsiix_ind_13\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.002</text><svg x=\"8.48197418847932%\" y=\"40\" height=\"20\" width=\"0.1571660358763065%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><line x1=\"8.331743398110481%\" x2=\"8.48197418847932%\" y1=\"60\" y2=\"60\" id=\"_fb_uplzmujucoasbprjsiix_ind_8\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.406858793294901%\" y=\"71\" font-size=\"12px\" id=\"_fs_uplzmujucoasbprjsiix_ind_8\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.002</text><svg x=\"8.331743398110481%\" y=\"40\" height=\"20\" width=\"0.15023079036883935%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"22.538509507911098%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"22.538509507911098%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"22.538509507911098%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"22.538509507911098%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"22.538509507911098%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"22.538509507911098%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"22.538509507911098%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"22.538509507911098%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"18.46606548712309%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"18.46606548712309%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"18.46606548712309%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"18.46606548712309%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"18.46606548712309%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"18.46606548712309%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"18.46606548712309%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"18.46606548712309%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"16.181403896547806%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"16.181403896547806%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"16.181403896547806%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"16.181403896547806%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"16.181403896547806%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"16.181403896547806%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"16.181403896547806%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"16.181403896547806%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"14.450021634698917%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"14.450021634698917%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"14.450021634698917%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"14.450021634698917%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"14.450021634698917%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"14.450021634698917%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"14.450021634698917%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"14.450021634698917%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"12.972828134586807%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"12.972828134586807%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"12.972828134586807%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"12.972828134586807%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"12.972828134586807%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"12.972828134586807%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"12.972828134586807%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"12.972828134586807%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"11.611848052105737%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"11.611848052105737%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"11.611848052105737%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"11.611848052105737%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"11.611848052105737%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"11.611848052105737%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"11.611848052105737%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"11.611848052105737%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"10.750763746284376%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"10.750763746284376%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"10.750763746284376%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"10.750763746284376%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"10.750763746284376%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"10.750763746284376%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"10.750763746284376%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"10.750763746284376%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"9.960436638683875%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"9.960436638683875%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"9.960436638683875%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"9.960436638683875%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"9.960436638683875%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"9.960436638683875%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"9.960436638683875%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"9.960436638683875%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"9.250697199742708%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"9.250697199742708%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"9.250697199742708%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"9.250697199742708%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"9.250697199742708%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"9.250697199742708%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"9.250697199742708%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"9.250697199742708%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.843169318096038%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.843169318096038%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.843169318096038%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.843169318096038%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.843169318096038%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.843169318096038%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.843169318096038%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.843169318096038%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.639140224355627%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.639140224355627%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.639140224355627%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.639140224355627%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.639140224355627%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.639140224355627%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.639140224355627%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.639140224355627%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.48197418847932%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.48197418847932%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.48197418847932%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.48197418847932%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.48197418847932%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.48197418847932%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.48197418847932%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.48197418847932%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"42.18276867891558%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.331743398110481%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"42.18276867891558%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"22.538509507911098%\" y=\"40\" height=\"20\" width=\"19.64425917100448%\" onmouseover=\"document.getElementById('_tp_uplzmujucoasbprjsiix_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_uplzmujucoasbprjsiix_ind_11').style.opacity = 1;document.getElementById('_fb_uplzmujucoasbprjsiix_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uplzmujucoasbprjsiix_ind_11').style.textDecoration = 'none';document.getElementById('_fs_uplzmujucoasbprjsiix_ind_11').style.opacity = 0;document.getElementById('_fb_uplzmujucoasbprjsiix_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"22.538509507911098%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"18.46606548712309%\" y=\"40\" height=\"20\" width=\"4.072444020788009%\" onmouseover=\"document.getElementById('_tp_uplzmujucoasbprjsiix_ind_21').style.textDecoration = 'underline';document.getElementById('_fs_uplzmujucoasbprjsiix_ind_21').style.opacity = 1;document.getElementById('_fb_uplzmujucoasbprjsiix_ind_21').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uplzmujucoasbprjsiix_ind_21').style.textDecoration = 'none';document.getElementById('_fs_uplzmujucoasbprjsiix_ind_21').style.opacity = 0;document.getElementById('_fb_uplzmujucoasbprjsiix_ind_21').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"18.46606548712309%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"16.181403896547806%\" y=\"40\" height=\"20\" width=\"2.2846615905752827%\" onmouseover=\"document.getElementById('_tp_uplzmujucoasbprjsiix_ind_18').style.textDecoration = 'underline';document.getElementById('_fs_uplzmujucoasbprjsiix_ind_18').style.opacity = 1;document.getElementById('_fb_uplzmujucoasbprjsiix_ind_18').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uplzmujucoasbprjsiix_ind_18').style.textDecoration = 'none';document.getElementById('_fs_uplzmujucoasbprjsiix_ind_18').style.opacity = 0;document.getElementById('_fb_uplzmujucoasbprjsiix_ind_18').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"16.181403896547806%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"14.450021634698917%\" y=\"40\" height=\"20\" width=\"1.7313822618488892%\" onmouseover=\"document.getElementById('_tp_uplzmujucoasbprjsiix_ind_12').style.textDecoration = 'underline';document.getElementById('_fs_uplzmujucoasbprjsiix_ind_12').style.opacity = 1;document.getElementById('_fb_uplzmujucoasbprjsiix_ind_12').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uplzmujucoasbprjsiix_ind_12').style.textDecoration = 'none';document.getElementById('_fs_uplzmujucoasbprjsiix_ind_12').style.opacity = 0;document.getElementById('_fb_uplzmujucoasbprjsiix_ind_12').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"14.450021634698917%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"12.972828134586807%\" y=\"40\" height=\"20\" width=\"1.4771935001121097%\" onmouseover=\"document.getElementById('_tp_uplzmujucoasbprjsiix_ind_20').style.textDecoration = 'underline';document.getElementById('_fs_uplzmujucoasbprjsiix_ind_20').style.opacity = 1;document.getElementById('_fb_uplzmujucoasbprjsiix_ind_20').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uplzmujucoasbprjsiix_ind_20').style.textDecoration = 'none';document.getElementById('_fs_uplzmujucoasbprjsiix_ind_20').style.opacity = 0;document.getElementById('_fb_uplzmujucoasbprjsiix_ind_20').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"12.972828134586807%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"11.611848052105737%\" y=\"40\" height=\"20\" width=\"1.3609800824810705%\" onmouseover=\"document.getElementById('_tp_uplzmujucoasbprjsiix_ind_19').style.textDecoration = 'underline';document.getElementById('_fs_uplzmujucoasbprjsiix_ind_19').style.opacity = 1;document.getElementById('_fb_uplzmujucoasbprjsiix_ind_19').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uplzmujucoasbprjsiix_ind_19').style.textDecoration = 'none';document.getElementById('_fs_uplzmujucoasbprjsiix_ind_19').style.opacity = 0;document.getElementById('_fb_uplzmujucoasbprjsiix_ind_19').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"11.611848052105737%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"10.750763746284376%\" y=\"40\" height=\"20\" width=\"0.8610843058213611%\" onmouseover=\"document.getElementById('_tp_uplzmujucoasbprjsiix_ind_16').style.textDecoration = 'underline';document.getElementById('_fs_uplzmujucoasbprjsiix_ind_16').style.opacity = 1;document.getElementById('_fb_uplzmujucoasbprjsiix_ind_16').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uplzmujucoasbprjsiix_ind_16').style.textDecoration = 'none';document.getElementById('_fs_uplzmujucoasbprjsiix_ind_16').style.opacity = 0;document.getElementById('_fb_uplzmujucoasbprjsiix_ind_16').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"10.750763746284376%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"9.960436638683875%\" y=\"40\" height=\"20\" width=\"0.7903271076005005%\" onmouseover=\"document.getElementById('_tp_uplzmujucoasbprjsiix_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_uplzmujucoasbprjsiix_ind_6').style.opacity = 1;document.getElementById('_fb_uplzmujucoasbprjsiix_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uplzmujucoasbprjsiix_ind_6').style.textDecoration = 'none';document.getElementById('_fs_uplzmujucoasbprjsiix_ind_6').style.opacity = 0;document.getElementById('_fb_uplzmujucoasbprjsiix_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"9.960436638683875%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"9.250697199742708%\" y=\"40\" height=\"20\" width=\"0.7097394389411669%\" onmouseover=\"document.getElementById('_tp_uplzmujucoasbprjsiix_ind_17').style.textDecoration = 'underline';document.getElementById('_fs_uplzmujucoasbprjsiix_ind_17').style.opacity = 1;document.getElementById('_fb_uplzmujucoasbprjsiix_ind_17').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uplzmujucoasbprjsiix_ind_17').style.textDecoration = 'none';document.getElementById('_fs_uplzmujucoasbprjsiix_ind_17').style.opacity = 0;document.getElementById('_fb_uplzmujucoasbprjsiix_ind_17').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"9.250697199742708%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.843169318096038%\" y=\"40\" height=\"20\" width=\"0.4075278816466703%\" onmouseover=\"document.getElementById('_tp_uplzmujucoasbprjsiix_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_uplzmujucoasbprjsiix_ind_2').style.opacity = 1;document.getElementById('_fb_uplzmujucoasbprjsiix_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uplzmujucoasbprjsiix_ind_2').style.textDecoration = 'none';document.getElementById('_fs_uplzmujucoasbprjsiix_ind_2').style.opacity = 0;document.getElementById('_fb_uplzmujucoasbprjsiix_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"8.843169318096038%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.639140224355627%\" y=\"40\" height=\"20\" width=\"0.20402909374041123%\" onmouseover=\"document.getElementById('_tp_uplzmujucoasbprjsiix_ind_14').style.textDecoration = 'underline';document.getElementById('_fs_uplzmujucoasbprjsiix_ind_14').style.opacity = 1;document.getElementById('_fb_uplzmujucoasbprjsiix_ind_14').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uplzmujucoasbprjsiix_ind_14').style.textDecoration = 'none';document.getElementById('_fs_uplzmujucoasbprjsiix_ind_14').style.opacity = 0;document.getElementById('_fb_uplzmujucoasbprjsiix_ind_14').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"8.639140224355627%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.48197418847932%\" y=\"40\" height=\"20\" width=\"0.1571660358763065%\" onmouseover=\"document.getElementById('_tp_uplzmujucoasbprjsiix_ind_13').style.textDecoration = 'underline';document.getElementById('_fs_uplzmujucoasbprjsiix_ind_13').style.opacity = 1;document.getElementById('_fb_uplzmujucoasbprjsiix_ind_13').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uplzmujucoasbprjsiix_ind_13').style.textDecoration = 'none';document.getElementById('_fs_uplzmujucoasbprjsiix_ind_13').style.opacity = 0;document.getElementById('_fb_uplzmujucoasbprjsiix_ind_13').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"8.331743398110481%\" y=\"40\" height=\"20\" width=\"0.15023079036883935%\" onmouseover=\"document.getElementById('_tp_uplzmujucoasbprjsiix_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_uplzmujucoasbprjsiix_ind_8').style.opacity = 1;document.getElementById('_fb_uplzmujucoasbprjsiix_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uplzmujucoasbprjsiix_ind_8').style.textDecoration = 'none';document.getElementById('_fs_uplzmujucoasbprjsiix_ind_8').style.opacity = 0;document.getElementById('_fb_uplzmujucoasbprjsiix_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"42.18276867891558%\" width=\"49.48548713770732%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"42.18276867891558%\" x2=\"71.81525159665145%\" y1=\"60\" y2=\"60\" id=\"_fb_uplzmujucoasbprjsiix_ind_7\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"56.999010137783515%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_uplzmujucoasbprjsiix_ind_7\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.377</text><svg x=\"42.18276867891558%\" y=\"40\" height=\"20\" width=\"29.63248291773587%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeless</text> </svg></svg><line x1=\"71.81525159665145%\" x2=\"87.74318880691406%\" y1=\"60\" y2=\"60\" id=\"_fb_uplzmujucoasbprjsiix_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"79.77922020178275%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_uplzmujucoasbprjsiix_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.203</text><svg x=\"71.81525159665145%\" y=\"40\" height=\"20\" width=\"15.927937210262613%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feeling</text> </svg></svg><line x1=\"87.74318880691406%\" x2=\"89.044585766453%\" y1=\"60\" y2=\"60\" id=\"_fb_uplzmujucoasbprjsiix_ind_15\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"88.39388728668354%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_uplzmujucoasbprjsiix_ind_15\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.017</text><svg x=\"87.74318880691406%\" y=\"40\" height=\"20\" width=\"1.301396959538934%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">around</text> </svg></svg><line x1=\"89.044585766453%\" x2=\"90.25067812533952%\" y1=\"60\" y2=\"60\" id=\"_fb_uplzmujucoasbprjsiix_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"89.64763194589625%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_uplzmujucoasbprjsiix_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.015</text><svg x=\"89.044585766453%\" y=\"40\" height=\"20\" width=\"1.2060923588865222%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><line x1=\"90.25067812533952%\" x2=\"91.39975482017749%\" y1=\"60\" y2=\"60\" id=\"_fb_uplzmujucoasbprjsiix_ind_10\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"90.82521647275851%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_uplzmujucoasbprjsiix_ind_10\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.015</text><svg x=\"90.25067812533952%\" y=\"40\" height=\"20\" width=\"1.149076694837973%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">damned</text> </svg></svg><line x1=\"91.39975482017749%\" x2=\"91.50555915047283%\" y1=\"60\" y2=\"60\" id=\"_fb_uplzmujucoasbprjsiix_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.45265698532516%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_uplzmujucoasbprjsiix_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.001</text><svg x=\"91.39975482017749%\" y=\"40\" height=\"20\" width=\"0.1058043302953422%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"91.50555915047283%\" x2=\"91.60632597700747%\" y1=\"60\" y2=\"60\" id=\"_fb_uplzmujucoasbprjsiix_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.55594256374016%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_uplzmujucoasbprjsiix_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.001</text><svg x=\"91.50555915047283%\" y=\"40\" height=\"20\" width=\"0.1007668265346382%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">go</text> </svg></svg><line x1=\"91.60632597700747%\" x2=\"91.66266250737995%\" y1=\"60\" y2=\"60\" id=\"_fb_uplzmujucoasbprjsiix_ind_9\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.63449424219371%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_uplzmujucoasbprjsiix_ind_9\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.001</text><svg x=\"91.60632597700747%\" y=\"40\" height=\"20\" width=\"0.056336530372476545%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><line x1=\"91.66266250737995%\" x2=\"91.6673451840802%\" y1=\"60\" y2=\"60\" id=\"_fb_uplzmujucoasbprjsiix_ind_22\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.66500384573007%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_uplzmujucoasbprjsiix_ind_22\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"91.66266250737995%\" y=\"40\" height=\"20\" width=\"0.0046826767002556835%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><line x1=\"91.6673451840802%\" x2=\"91.6682558166229%\" y1=\"60\" y2=\"60\" id=\"_fb_uplzmujucoasbprjsiix_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.66780050035155%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_uplzmujucoasbprjsiix_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"91.6673451840802%\" y=\"40\" height=\"20\" width=\"0.0009106325426984085%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"71.81525159665145%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"71.81525159665145%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"71.81525159665145%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"71.81525159665145%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"71.81525159665145%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"71.81525159665145%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"71.81525159665145%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"71.81525159665145%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"87.74318880691406%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"87.74318880691406%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"87.74318880691406%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"87.74318880691406%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"87.74318880691406%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"87.74318880691406%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"87.74318880691406%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"87.74318880691406%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"89.044585766453%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"89.044585766453%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"89.044585766453%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"89.044585766453%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"89.044585766453%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"89.044585766453%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"89.044585766453%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"89.044585766453%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"90.25067812533952%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.25067812533952%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.25067812533952%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.25067812533952%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.25067812533952%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.25067812533952%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.25067812533952%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.25067812533952%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.39975482017749%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.39975482017749%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.39975482017749%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.39975482017749%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.39975482017749%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.39975482017749%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.39975482017749%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.39975482017749%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.50555915047283%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.50555915047283%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.50555915047283%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.50555915047283%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.50555915047283%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.50555915047283%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.50555915047283%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.50555915047283%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.60632597700747%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.60632597700747%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.60632597700747%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.60632597700747%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.60632597700747%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.60632597700747%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.60632597700747%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.60632597700747%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.66266250737995%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.66266250737995%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.66266250737995%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.66266250737995%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.66266250737995%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.66266250737995%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.66266250737995%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.66266250737995%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.6673451840802%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.6673451840802%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.6673451840802%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.6673451840802%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.6673451840802%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.6673451840802%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.6673451840802%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.6673451840802%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"42.18276867891558%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.6682558166229%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"71.81525159665145%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"42.18276867891558%\" y=\"40\" height=\"20\" width=\"29.63248291773587%\" onmouseover=\"document.getElementById('_tp_uplzmujucoasbprjsiix_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_uplzmujucoasbprjsiix_ind_7').style.opacity = 1;document.getElementById('_fb_uplzmujucoasbprjsiix_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uplzmujucoasbprjsiix_ind_7').style.textDecoration = 'none';document.getElementById('_fs_uplzmujucoasbprjsiix_ind_7').style.opacity = 0;document.getElementById('_fb_uplzmujucoasbprjsiix_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"87.74318880691406%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"71.81525159665145%\" y=\"40\" height=\"20\" width=\"15.927937210262613%\" onmouseover=\"document.getElementById('_tp_uplzmujucoasbprjsiix_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_uplzmujucoasbprjsiix_ind_5').style.opacity = 1;document.getElementById('_fb_uplzmujucoasbprjsiix_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uplzmujucoasbprjsiix_ind_5').style.textDecoration = 'none';document.getElementById('_fs_uplzmujucoasbprjsiix_ind_5').style.opacity = 0;document.getElementById('_fb_uplzmujucoasbprjsiix_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"89.044585766453%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"87.74318880691406%\" y=\"40\" height=\"20\" width=\"1.301396959538934%\" onmouseover=\"document.getElementById('_tp_uplzmujucoasbprjsiix_ind_15').style.textDecoration = 'underline';document.getElementById('_fs_uplzmujucoasbprjsiix_ind_15').style.opacity = 1;document.getElementById('_fb_uplzmujucoasbprjsiix_ind_15').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uplzmujucoasbprjsiix_ind_15').style.textDecoration = 'none';document.getElementById('_fs_uplzmujucoasbprjsiix_ind_15').style.opacity = 0;document.getElementById('_fb_uplzmujucoasbprjsiix_ind_15').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"90.25067812533952%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"89.044585766453%\" y=\"40\" height=\"20\" width=\"1.2060923588865222%\" onmouseover=\"document.getElementById('_tp_uplzmujucoasbprjsiix_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_uplzmujucoasbprjsiix_ind_4').style.opacity = 1;document.getElementById('_fb_uplzmujucoasbprjsiix_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uplzmujucoasbprjsiix_ind_4').style.textDecoration = 'none';document.getElementById('_fs_uplzmujucoasbprjsiix_ind_4').style.opacity = 0;document.getElementById('_fb_uplzmujucoasbprjsiix_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.39975482017749%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"90.25067812533952%\" y=\"40\" height=\"20\" width=\"1.149076694837973%\" onmouseover=\"document.getElementById('_tp_uplzmujucoasbprjsiix_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_uplzmujucoasbprjsiix_ind_10').style.opacity = 1;document.getElementById('_fb_uplzmujucoasbprjsiix_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uplzmujucoasbprjsiix_ind_10').style.textDecoration = 'none';document.getElementById('_fs_uplzmujucoasbprjsiix_ind_10').style.opacity = 0;document.getElementById('_fb_uplzmujucoasbprjsiix_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.50555915047283%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.39975482017749%\" y=\"40\" height=\"20\" width=\"0.1058043302953422%\" onmouseover=\"document.getElementById('_tp_uplzmujucoasbprjsiix_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_uplzmujucoasbprjsiix_ind_1').style.opacity = 1;document.getElementById('_fb_uplzmujucoasbprjsiix_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uplzmujucoasbprjsiix_ind_1').style.textDecoration = 'none';document.getElementById('_fs_uplzmujucoasbprjsiix_ind_1').style.opacity = 0;document.getElementById('_fb_uplzmujucoasbprjsiix_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.60632597700747%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.50555915047283%\" y=\"40\" height=\"20\" width=\"0.1007668265346382%\" onmouseover=\"document.getElementById('_tp_uplzmujucoasbprjsiix_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_uplzmujucoasbprjsiix_ind_3').style.opacity = 1;document.getElementById('_fb_uplzmujucoasbprjsiix_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uplzmujucoasbprjsiix_ind_3').style.textDecoration = 'none';document.getElementById('_fs_uplzmujucoasbprjsiix_ind_3').style.opacity = 0;document.getElementById('_fb_uplzmujucoasbprjsiix_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66266250737995%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.60632597700747%\" y=\"40\" height=\"20\" width=\"0.056336530372476545%\" onmouseover=\"document.getElementById('_tp_uplzmujucoasbprjsiix_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_uplzmujucoasbprjsiix_ind_9').style.opacity = 1;document.getElementById('_fb_uplzmujucoasbprjsiix_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uplzmujucoasbprjsiix_ind_9').style.textDecoration = 'none';document.getElementById('_fs_uplzmujucoasbprjsiix_ind_9').style.opacity = 0;document.getElementById('_fb_uplzmujucoasbprjsiix_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.6673451840802%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.66266250737995%\" y=\"40\" height=\"20\" width=\"0.0046826767002556835%\" onmouseover=\"document.getElementById('_tp_uplzmujucoasbprjsiix_ind_22').style.textDecoration = 'underline';document.getElementById('_fs_uplzmujucoasbprjsiix_ind_22').style.opacity = 1;document.getElementById('_fb_uplzmujucoasbprjsiix_ind_22').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uplzmujucoasbprjsiix_ind_22').style.textDecoration = 'none';document.getElementById('_fs_uplzmujucoasbprjsiix_ind_22').style.opacity = 0;document.getElementById('_fb_uplzmujucoasbprjsiix_ind_22').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"91.6673451840802%\" y=\"40\" height=\"20\" width=\"0.0009106325426984085%\" onmouseover=\"document.getElementById('_tp_uplzmujucoasbprjsiix_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_uplzmujucoasbprjsiix_ind_0').style.opacity = 1;document.getElementById('_fb_uplzmujucoasbprjsiix_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uplzmujucoasbprjsiix_ind_0').style.textDecoration = 'none';document.getElementById('_fs_uplzmujucoasbprjsiix_ind_0').style.opacity = 0;document.getElementById('_fb_uplzmujucoasbprjsiix_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_uplzmujucoasbprjsiix_ind_0'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_uplzmujucoasbprjsiix_ind_0').style.opacity = 1; document.getElementById('_fs_uplzmujucoasbprjsiix_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_uplzmujucoasbprjsiix_ind_0').style.opacity = 0; document.getElementById('_fs_uplzmujucoasbprjsiix_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.001</div\n",
|
|
" ><div id='_tp_uplzmujucoasbprjsiix_ind_1'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_uplzmujucoasbprjsiix_ind_1').style.opacity = 1; document.getElementById('_fs_uplzmujucoasbprjsiix_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_uplzmujucoasbprjsiix_ind_1').style.opacity = 0; document.getElementById('_fs_uplzmujucoasbprjsiix_ind_1').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.005</div\n",
|
|
" ><div id='_tp_uplzmujucoasbprjsiix_ind_2'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_uplzmujucoasbprjsiix_ind_2').style.opacity = 1; document.getElementById('_fs_uplzmujucoasbprjsiix_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_uplzmujucoasbprjsiix_ind_2').style.opacity = 0; document.getElementById('_fs_uplzmujucoasbprjsiix_ind_2').style.opacity = 0;\"\n",
|
|
" >can </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.001</div\n",
|
|
" ><div id='_tp_uplzmujucoasbprjsiix_ind_3'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_uplzmujucoasbprjsiix_ind_3').style.opacity = 1; document.getElementById('_fs_uplzmujucoasbprjsiix_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_uplzmujucoasbprjsiix_ind_3').style.opacity = 0; document.getElementById('_fs_uplzmujucoasbprjsiix_ind_3').style.opacity = 0;\"\n",
|
|
" >go </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.015</div\n",
|
|
" ><div id='_tp_uplzmujucoasbprjsiix_ind_4'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03830461477520309); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_uplzmujucoasbprjsiix_ind_4').style.opacity = 1; document.getElementById('_fs_uplzmujucoasbprjsiix_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_uplzmujucoasbprjsiix_ind_4').style.opacity = 0; document.getElementById('_fs_uplzmujucoasbprjsiix_ind_4').style.opacity = 0;\"\n",
|
|
" >from </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.203</div\n",
|
|
" ><div id='_tp_uplzmujucoasbprjsiix_ind_5'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.5349178055060406); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_uplzmujucoasbprjsiix_ind_5').style.opacity = 1; document.getElementById('_fs_uplzmujucoasbprjsiix_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_uplzmujucoasbprjsiix_ind_5').style.opacity = 0; document.getElementById('_fs_uplzmujucoasbprjsiix_ind_5').style.opacity = 0;\"\n",
|
|
" >feeling </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.01</div\n",
|
|
" ><div id='_tp_uplzmujucoasbprjsiix_ind_6'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.02253911665676371); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_uplzmujucoasbprjsiix_ind_6').style.opacity = 1; document.getElementById('_fs_uplzmujucoasbprjsiix_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_uplzmujucoasbprjsiix_ind_6').style.opacity = 0; document.getElementById('_fs_uplzmujucoasbprjsiix_ind_6').style.opacity = 0;\"\n",
|
|
" >so </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.377</div\n",
|
|
" ><div id='_tp_uplzmujucoasbprjsiix_ind_7'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 1.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_uplzmujucoasbprjsiix_ind_7').style.opacity = 1; document.getElementById('_fs_uplzmujucoasbprjsiix_ind_7').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_uplzmujucoasbprjsiix_ind_7').style.opacity = 0; document.getElementById('_fs_uplzmujucoasbprjsiix_ind_7').style.opacity = 0;\"\n",
|
|
" >hopeless </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.002</div\n",
|
|
" ><div id='_tp_uplzmujucoasbprjsiix_ind_8'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_uplzmujucoasbprjsiix_ind_8').style.opacity = 1; document.getElementById('_fs_uplzmujucoasbprjsiix_ind_8').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_uplzmujucoasbprjsiix_ind_8').style.opacity = 0; document.getElementById('_fs_uplzmujucoasbprjsiix_ind_8').style.opacity = 0;\"\n",
|
|
" >to </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.001</div\n",
|
|
" ><div id='_tp_uplzmujucoasbprjsiix_ind_9'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_uplzmujucoasbprjsiix_ind_9').style.opacity = 1; document.getElementById('_fs_uplzmujucoasbprjsiix_ind_9').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_uplzmujucoasbprjsiix_ind_9').style.opacity = 0; document.getElementById('_fs_uplzmujucoasbprjsiix_ind_9').style.opacity = 0;\"\n",
|
|
" >so </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.015</div\n",
|
|
" ><div id='_tp_uplzmujucoasbprjsiix_ind_10'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03042186571598325); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_uplzmujucoasbprjsiix_ind_10').style.opacity = 1; document.getElementById('_fs_uplzmujucoasbprjsiix_ind_10').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_uplzmujucoasbprjsiix_ind_10').style.opacity = 0; document.getElementById('_fs_uplzmujucoasbprjsiix_ind_10').style.opacity = 0;\"\n",
|
|
" >damned </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.25</div\n",
|
|
" ><div id='_tp_uplzmujucoasbprjsiix_ind_11'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.6610417904535549); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_uplzmujucoasbprjsiix_ind_11').style.opacity = 1; document.getElementById('_fs_uplzmujucoasbprjsiix_ind_11').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_uplzmujucoasbprjsiix_ind_11').style.opacity = 0; document.getElementById('_fs_uplzmujucoasbprjsiix_ind_11').style.opacity = 0;\"\n",
|
|
" >hopeful </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.022</div\n",
|
|
" ><div id='_tp_uplzmujucoasbprjsiix_ind_12'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.05407011289364243); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_uplzmujucoasbprjsiix_ind_12').style.opacity = 1; document.getElementById('_fs_uplzmujucoasbprjsiix_ind_12').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_uplzmujucoasbprjsiix_ind_12').style.opacity = 0; document.getElementById('_fs_uplzmujucoasbprjsiix_ind_12').style.opacity = 0;\"\n",
|
|
" >just </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.002</div\n",
|
|
" ><div id='_tp_uplzmujucoasbprjsiix_ind_13'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_uplzmujucoasbprjsiix_ind_13').style.opacity = 1; document.getElementById('_fs_uplzmujucoasbprjsiix_ind_13').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_uplzmujucoasbprjsiix_ind_13').style.opacity = 0; document.getElementById('_fs_uplzmujucoasbprjsiix_ind_13').style.opacity = 0;\"\n",
|
|
" >from </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.003</div\n",
|
|
" ><div id='_tp_uplzmujucoasbprjsiix_ind_14'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_uplzmujucoasbprjsiix_ind_14').style.opacity = 1; document.getElementById('_fs_uplzmujucoasbprjsiix_ind_14').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_uplzmujucoasbprjsiix_ind_14').style.opacity = 0; document.getElementById('_fs_uplzmujucoasbprjsiix_ind_14').style.opacity = 0;\"\n",
|
|
" >being </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.017</div\n",
|
|
" ><div id='_tp_uplzmujucoasbprjsiix_ind_15'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03830461477520309); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_uplzmujucoasbprjsiix_ind_15').style.opacity = 1; document.getElementById('_fs_uplzmujucoasbprjsiix_ind_15').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_uplzmujucoasbprjsiix_ind_15').style.opacity = 0; document.getElementById('_fs_uplzmujucoasbprjsiix_ind_15').style.opacity = 0;\"\n",
|
|
" >around </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.011</div\n",
|
|
" ><div id='_tp_uplzmujucoasbprjsiix_ind_16'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.02253911665676371); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_uplzmujucoasbprjsiix_ind_16').style.opacity = 1; document.getElementById('_fs_uplzmujucoasbprjsiix_ind_16').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_uplzmujucoasbprjsiix_ind_16').style.opacity = 0; document.getElementById('_fs_uplzmujucoasbprjsiix_ind_16').style.opacity = 0;\"\n",
|
|
" >someone </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.009</div\n",
|
|
" ><div id='_tp_uplzmujucoasbprjsiix_ind_17'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.02253911665676371); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_uplzmujucoasbprjsiix_ind_17').style.opacity = 1; document.getElementById('_fs_uplzmujucoasbprjsiix_ind_17').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_uplzmujucoasbprjsiix_ind_17').style.opacity = 0; document.getElementById('_fs_uplzmujucoasbprjsiix_ind_17').style.opacity = 0;\"\n",
|
|
" >who </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.029</div\n",
|
|
" ><div id='_tp_uplzmujucoasbprjsiix_ind_18'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.06983561101208159); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_uplzmujucoasbprjsiix_ind_18').style.opacity = 1; document.getElementById('_fs_uplzmujucoasbprjsiix_ind_18').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_uplzmujucoasbprjsiix_ind_18').style.opacity = 0; document.getElementById('_fs_uplzmujucoasbprjsiix_ind_18').style.opacity = 0;\"\n",
|
|
" >cares </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.017</div\n",
|
|
" ><div id='_tp_uplzmujucoasbprjsiix_ind_19'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.03830461477520289); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_uplzmujucoasbprjsiix_ind_19').style.opacity = 1; document.getElementById('_fs_uplzmujucoasbprjsiix_ind_19').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_uplzmujucoasbprjsiix_ind_19').style.opacity = 0; document.getElementById('_fs_uplzmujucoasbprjsiix_ind_19').style.opacity = 0;\"\n",
|
|
" >and </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.019</div\n",
|
|
" ><div id='_tp_uplzmujucoasbprjsiix_ind_20'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.04618736383442265); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_uplzmujucoasbprjsiix_ind_20').style.opacity = 1; document.getElementById('_fs_uplzmujucoasbprjsiix_ind_20').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_uplzmujucoasbprjsiix_ind_20').style.opacity = 0; document.getElementById('_fs_uplzmujucoasbprjsiix_ind_20').style.opacity = 0;\"\n",
|
|
" >is </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.052</div\n",
|
|
" ><div id='_tp_uplzmujucoasbprjsiix_ind_21'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.13289760348583876); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_uplzmujucoasbprjsiix_ind_21').style.opacity = 1; document.getElementById('_fs_uplzmujucoasbprjsiix_ind_21').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_uplzmujucoasbprjsiix_ind_21').style.opacity = 0; document.getElementById('_fs_uplzmujucoasbprjsiix_ind_21').style.opacity = 0;\"\n",
|
|
" >awake</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_uplzmujucoasbprjsiix_ind_22'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_uplzmujucoasbprjsiix_ind_22').style.opacity = 1; document.getElementById('_fs_uplzmujucoasbprjsiix_ind_22').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_uplzmujucoasbprjsiix_ind_22').style.opacity = 0; document.getElementById('_fs_uplzmujucoasbprjsiix_ind_22').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_mqwalcomvemcxolagrxb_output_2' style='display: none';><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"48.705281698548966%\" y1=\"33\" x2=\"48.705281698548966%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"48.705281698548966%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.3</text><line x1=\"37.053446541506865%\" y1=\"33\" x2=\"37.053446541506865%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"37.053446541506865%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.1</text><line x1=\"25.40161138446477%\" y1=\"33\" x2=\"25.40161138446477%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"25.40161138446477%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.1</text><line x1=\"13.749776227422668%\" y1=\"33\" x2=\"13.749776227422668%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"13.749776227422668%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.3</text><line x1=\"60.357116855591066%\" y1=\"33\" x2=\"60.357116855591066%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"60.357116855591066%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.5</text><line x1=\"72.00895201263315%\" y1=\"33\" x2=\"72.00895201263315%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"72.00895201263315%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.7</text><line x1=\"83.66078716967526%\" y1=\"33\" x2=\"83.66078716967526%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"83.66078716967526%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.9</text><line x1=\"36.8202388654955%\" y1=\"33\" x2=\"36.8202388654955%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"36.8202388654955%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.0959971</text><text x=\"36.8202388654955%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.0959971</text><text x=\"36.8202388654955%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"31.285572689462583%\" y1=\"33\" x2=\"31.285572689462583%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"31.285572689462583%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.000996302</text><text x=\"31.285572689462583%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.000996302</text><text x=\"31.285572689462583%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">love</tspan>(inputs)</text><rect x=\"26.937996359409517%\" width=\"4.347576330053066%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"28.406372280607414%\" x2=\"31.285572689462583%\" y1=\"60\" y2=\"60\" id=\"_fb_ifgglesnbrcssmrkbmny_ind_18\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"29.845972485035%\" y=\"71\" font-size=\"12px\" id=\"_fs_ifgglesnbrcssmrkbmny_ind_18\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.049</text><svg x=\"28.406372280607414%\" y=\"40\" height=\"20\" width=\"2.8792004088551693%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">cares</text> </svg></svg><line x1=\"27.313847185045088%\" x2=\"28.406372280607414%\" y1=\"60\" y2=\"60\" id=\"_fb_ifgglesnbrcssmrkbmny_ind_16\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"27.860109732826253%\" y=\"71\" font-size=\"12px\" id=\"_fs_ifgglesnbrcssmrkbmny_ind_16\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.019</text><svg x=\"27.313847185045088%\" y=\"40\" height=\"20\" width=\"1.0925250955623262%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">someone</text> </svg></svg><line x1=\"27.15453430780521%\" x2=\"27.313847185045088%\" y1=\"60\" y2=\"60\" id=\"_fb_ifgglesnbrcssmrkbmny_ind_15\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"27.23419074642515%\" y=\"71\" font-size=\"12px\" id=\"_fs_ifgglesnbrcssmrkbmny_ind_15\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.003</text><svg x=\"27.15453430780521%\" y=\"40\" height=\"20\" width=\"0.15931287723987708%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">around</text> </svg></svg><line x1=\"27.062365977644955%\" x2=\"27.15453430780521%\" y1=\"60\" y2=\"60\" id=\"_fb_ifgglesnbrcssmrkbmny_ind_12\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"27.108450142725083%\" y=\"71\" font-size=\"12px\" id=\"_fs_ifgglesnbrcssmrkbmny_ind_12\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.002</text><svg x=\"27.062365977644955%\" y=\"40\" height=\"20\" width=\"0.09216833016025561%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">just</text> </svg></svg><line x1=\"27.002558937567578%\" x2=\"27.062365977644955%\" y1=\"60\" y2=\"60\" id=\"_fb_ifgglesnbrcssmrkbmny_ind_1\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"27.032462457606265%\" y=\"71\" font-size=\"12px\" id=\"_fs_ifgglesnbrcssmrkbmny_ind_1\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.001</text><svg x=\"27.002558937567578%\" y=\"40\" height=\"20\" width=\"0.05980704007737714%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"26.948990648163022%\" x2=\"27.002558937567578%\" y1=\"60\" y2=\"60\" id=\"_fb_ifgglesnbrcssmrkbmny_ind_2\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"26.975774792865302%\" y=\"71\" font-size=\"12px\" id=\"_fs_ifgglesnbrcssmrkbmny_ind_2\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.001</text><svg x=\"26.948990648163022%\" y=\"40\" height=\"20\" width=\"0.05356828940455571%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">can</text> </svg></svg><line x1=\"26.939901714319827%\" x2=\"26.948990648163022%\" y1=\"60\" y2=\"60\" id=\"_fb_ifgglesnbrcssmrkbmny_ind_4\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"26.944446181241425%\" y=\"71\" font-size=\"12px\" id=\"_fs_ifgglesnbrcssmrkbmny_ind_4\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"26.939901714319827%\" y=\"40\" height=\"20\" width=\"0.00908893384319498%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><line x1=\"26.938720216847255%\" x2=\"26.939901714319827%\" y1=\"60\" y2=\"60\" id=\"_fb_ifgglesnbrcssmrkbmny_ind_10\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"26.93931096558354%\" y=\"71\" font-size=\"12px\" id=\"_fs_ifgglesnbrcssmrkbmny_ind_10\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"26.938720216847255%\" y=\"40\" height=\"20\" width=\"0.001181497472572346%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">damned</text> </svg></svg><line x1=\"26.937996359409517%\" x2=\"26.938720216847255%\" y1=\"60\" y2=\"60\" id=\"_fb_ifgglesnbrcssmrkbmny_ind_9\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"26.938358288128384%\" y=\"71\" font-size=\"12px\" id=\"_fs_ifgglesnbrcssmrkbmny_ind_9\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"26.937996359409517%\" y=\"40\" height=\"20\" width=\"0.0007238574377375073%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"28.406372280607414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"28.406372280607414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"28.406372280607414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"28.406372280607414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"28.406372280607414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"28.406372280607414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"28.406372280607414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"28.406372280607414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"27.313847185045088%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"27.313847185045088%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"27.313847185045088%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"27.313847185045088%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"27.313847185045088%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"27.313847185045088%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"27.313847185045088%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"27.313847185045088%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"27.15453430780521%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"27.15453430780521%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"27.15453430780521%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"27.15453430780521%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"27.15453430780521%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"27.15453430780521%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"27.15453430780521%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"27.15453430780521%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"27.062365977644955%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"27.062365977644955%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"27.062365977644955%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"27.062365977644955%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"27.062365977644955%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"27.062365977644955%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"27.062365977644955%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"27.062365977644955%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"27.002558937567578%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"27.002558937567578%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"27.002558937567578%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"27.002558937567578%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"27.002558937567578%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"27.002558937567578%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"27.002558937567578%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"27.002558937567578%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"26.948990648163022%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"26.948990648163022%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"26.948990648163022%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"26.948990648163022%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"26.948990648163022%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"26.948990648163022%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"26.948990648163022%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"26.948990648163022%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"26.939901714319827%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"26.939901714319827%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"26.939901714319827%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"26.939901714319827%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"26.939901714319827%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"26.939901714319827%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"26.939901714319827%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"26.939901714319827%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"26.938720216847255%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"26.938720216847255%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"26.938720216847255%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"26.938720216847255%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"26.938720216847255%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"26.938720216847255%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"26.938720216847255%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"26.938720216847255%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"31.285572689462583%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"26.937996359409517%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"31.285572689462583%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"28.406372280607414%\" y=\"40\" height=\"20\" width=\"2.8792004088551693%\" onmouseover=\"document.getElementById('_tp_ifgglesnbrcssmrkbmny_ind_18').style.textDecoration = 'underline';document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_18').style.opacity = 1;document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_18').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ifgglesnbrcssmrkbmny_ind_18').style.textDecoration = 'none';document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_18').style.opacity = 0;document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_18').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"28.406372280607414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"27.313847185045088%\" y=\"40\" height=\"20\" width=\"1.0925250955623262%\" onmouseover=\"document.getElementById('_tp_ifgglesnbrcssmrkbmny_ind_16').style.textDecoration = 'underline';document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_16').style.opacity = 1;document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_16').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ifgglesnbrcssmrkbmny_ind_16').style.textDecoration = 'none';document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_16').style.opacity = 0;document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_16').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"27.313847185045088%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"27.15453430780521%\" y=\"40\" height=\"20\" width=\"0.15931287723987708%\" onmouseover=\"document.getElementById('_tp_ifgglesnbrcssmrkbmny_ind_15').style.textDecoration = 'underline';document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_15').style.opacity = 1;document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_15').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ifgglesnbrcssmrkbmny_ind_15').style.textDecoration = 'none';document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_15').style.opacity = 0;document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_15').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"27.15453430780521%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"27.062365977644955%\" y=\"40\" height=\"20\" width=\"0.09216833016025561%\" onmouseover=\"document.getElementById('_tp_ifgglesnbrcssmrkbmny_ind_12').style.textDecoration = 'underline';document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_12').style.opacity = 1;document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_12').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ifgglesnbrcssmrkbmny_ind_12').style.textDecoration = 'none';document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_12').style.opacity = 0;document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_12').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"27.062365977644955%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"27.002558937567578%\" y=\"40\" height=\"20\" width=\"0.05980704007737714%\" onmouseover=\"document.getElementById('_tp_ifgglesnbrcssmrkbmny_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_1').style.opacity = 1;document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ifgglesnbrcssmrkbmny_ind_1').style.textDecoration = 'none';document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_1').style.opacity = 0;document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"27.002558937567578%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"26.948990648163022%\" y=\"40\" height=\"20\" width=\"0.05356828940455571%\" onmouseover=\"document.getElementById('_tp_ifgglesnbrcssmrkbmny_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_2').style.opacity = 1;document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ifgglesnbrcssmrkbmny_ind_2').style.textDecoration = 'none';document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_2').style.opacity = 0;document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"26.948990648163022%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"26.939901714319827%\" y=\"40\" height=\"20\" width=\"0.00908893384319498%\" onmouseover=\"document.getElementById('_tp_ifgglesnbrcssmrkbmny_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_4').style.opacity = 1;document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ifgglesnbrcssmrkbmny_ind_4').style.textDecoration = 'none';document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_4').style.opacity = 0;document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"26.939901714319827%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"26.938720216847255%\" y=\"40\" height=\"20\" width=\"0.001181497472572346%\" onmouseover=\"document.getElementById('_tp_ifgglesnbrcssmrkbmny_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_10').style.opacity = 1;document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ifgglesnbrcssmrkbmny_ind_10').style.textDecoration = 'none';document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_10').style.opacity = 0;document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"26.937996359409517%\" y=\"40\" height=\"20\" width=\"0.0007238574377375073%\" onmouseover=\"document.getElementById('_tp_ifgglesnbrcssmrkbmny_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_9').style.opacity = 1;document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ifgglesnbrcssmrkbmny_ind_9').style.textDecoration = 'none';document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_9').style.opacity = 0;document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"31.285572689462583%\" width=\"9.88224250608598%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"31.285572689462583%\" x2=\"34.165457572227346%\" y1=\"60\" y2=\"60\" id=\"_fb_ifgglesnbrcssmrkbmny_ind_7\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"32.72551513084497%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_ifgglesnbrcssmrkbmny_ind_7\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.049</text><svg x=\"31.285572689462583%\" y=\"40\" height=\"20\" width=\"2.879884882764763%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeless</text> </svg></svg><line x1=\"34.165457572227346%\" x2=\"36.39849140534784%\" y1=\"60\" y2=\"60\" id=\"_fb_ifgglesnbrcssmrkbmny_ind_11\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"35.2819744887876%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_ifgglesnbrcssmrkbmny_ind_11\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.038</text><svg x=\"34.165457572227346%\" y=\"40\" height=\"20\" width=\"2.233033833120494%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeful</text> </svg></svg><line x1=\"36.39849140534784%\" x2=\"38.18237779014663%\" y1=\"60\" y2=\"60\" id=\"_fb_ifgglesnbrcssmrkbmny_ind_19\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"37.290434597747236%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_ifgglesnbrcssmrkbmny_ind_19\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.031</text><svg x=\"36.39849140534784%\" y=\"40\" height=\"20\" width=\"1.783886384798791%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">and</text> </svg></svg><line x1=\"38.18237779014663%\" x2=\"39.303296793152754%\" y1=\"60\" y2=\"60\" id=\"_fb_ifgglesnbrcssmrkbmny_ind_21\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"38.74283729164969%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_ifgglesnbrcssmrkbmny_ind_21\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.019</text><svg x=\"38.18237779014663%\" y=\"40\" height=\"20\" width=\"1.1209190030061222%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">awake</text> </svg></svg><line x1=\"39.303296793152754%\" x2=\"39.70657727691556%\" y1=\"60\" y2=\"60\" id=\"_fb_ifgglesnbrcssmrkbmny_ind_20\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"39.50493703503416%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_ifgglesnbrcssmrkbmny_ind_20\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.007</text><svg x=\"39.303296793152754%\" y=\"40\" height=\"20\" width=\"0.40328048376280634%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">is</text> </svg></svg><line x1=\"39.70657727691556%\" x2=\"40.04094855721649%\" y1=\"60\" y2=\"60\" id=\"_fb_ifgglesnbrcssmrkbmny_ind_13\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"39.873762917066024%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_ifgglesnbrcssmrkbmny_ind_13\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.006</text><svg x=\"39.70657727691556%\" y=\"40\" height=\"20\" width=\"0.3343712803009282%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><line x1=\"40.04094855721649%\" x2=\"40.36333192489341%\" y1=\"60\" y2=\"60\" id=\"_fb_ifgglesnbrcssmrkbmny_ind_6\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"40.20214024105495%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_ifgglesnbrcssmrkbmny_ind_6\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.006</text><svg x=\"40.04094855721649%\" y=\"40\" height=\"20\" width=\"0.32238336767692033%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><line x1=\"40.36333192489341%\" x2=\"40.62732310837508%\" y1=\"60\" y2=\"60\" id=\"_fb_ifgglesnbrcssmrkbmny_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"40.49532751663425%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_ifgglesnbrcssmrkbmny_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.005</text><svg x=\"40.36333192489341%\" y=\"40\" height=\"20\" width=\"0.2639911834816715%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feeling</text> </svg></svg><line x1=\"40.62732310837508%\" x2=\"40.828381217746575%\" y1=\"60\" y2=\"60\" id=\"_fb_ifgglesnbrcssmrkbmny_ind_14\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"40.72785216306083%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_ifgglesnbrcssmrkbmny_ind_14\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.003</text><svg x=\"40.62732310837508%\" y=\"40\" height=\"20\" width=\"0.2010581093714947%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">being</text> </svg></svg><line x1=\"40.828381217746575%\" x2=\"41.00586699281236%\" y1=\"60\" y2=\"60\" id=\"_fb_ifgglesnbrcssmrkbmny_ind_17\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"40.91712410527947%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_ifgglesnbrcssmrkbmny_ind_17\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.003</text><svg x=\"40.828381217746575%\" y=\"40\" height=\"20\" width=\"0.177485775065783%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">who</text> </svg></svg><line x1=\"41.00586699281236%\" x2=\"41.13334623571875%\" y1=\"60\" y2=\"60\" id=\"_fb_ifgglesnbrcssmrkbmny_ind_8\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"41.06960661426555%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_ifgglesnbrcssmrkbmny_ind_8\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.002</text><svg x=\"41.00586699281236%\" y=\"40\" height=\"20\" width=\"0.12747924290638935%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><line x1=\"41.13334623571875%\" x2=\"41.16387800779905%\" y1=\"60\" y2=\"60\" id=\"_fb_ifgglesnbrcssmrkbmny_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"41.1486121217589%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_ifgglesnbrcssmrkbmny_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.001</text><svg x=\"41.13334623571875%\" y=\"40\" height=\"20\" width=\"0.030531772080301778%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">go</text> </svg></svg><line x1=\"41.16387800779905%\" x2=\"41.16633938282675%\" y1=\"60\" y2=\"60\" id=\"_fb_ifgglesnbrcssmrkbmny_ind_22\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"41.165108695312895%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_ifgglesnbrcssmrkbmny_ind_22\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"41.16387800779905%\" y=\"40\" height=\"20\" width=\"0.0024613750276998303%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><line x1=\"41.16633938282675%\" x2=\"41.16781519554857%\" y1=\"60\" y2=\"60\" id=\"_fb_ifgglesnbrcssmrkbmny_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"41.16707728918766%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_ifgglesnbrcssmrkbmny_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"41.16633938282675%\" y=\"40\" height=\"20\" width=\"0.0014758127218215122%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"34.165457572227346%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"34.165457572227346%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"34.165457572227346%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"34.165457572227346%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"34.165457572227346%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"34.165457572227346%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"34.165457572227346%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"34.165457572227346%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"36.39849140534784%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"36.39849140534784%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"36.39849140534784%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"36.39849140534784%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"36.39849140534784%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"36.39849140534784%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"36.39849140534784%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"36.39849140534784%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"38.18237779014663%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"38.18237779014663%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"38.18237779014663%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"38.18237779014663%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"38.18237779014663%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"38.18237779014663%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"38.18237779014663%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"38.18237779014663%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"39.303296793152754%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"39.303296793152754%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"39.303296793152754%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"39.303296793152754%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"39.303296793152754%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"39.303296793152754%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"39.303296793152754%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"39.303296793152754%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"39.70657727691556%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"39.70657727691556%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"39.70657727691556%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"39.70657727691556%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"39.70657727691556%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"39.70657727691556%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"39.70657727691556%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"39.70657727691556%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"40.04094855721649%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"40.04094855721649%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"40.04094855721649%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"40.04094855721649%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"40.04094855721649%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"40.04094855721649%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"40.04094855721649%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"40.04094855721649%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"40.36333192489341%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"40.36333192489341%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"40.36333192489341%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"40.36333192489341%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"40.36333192489341%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"40.36333192489341%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"40.36333192489341%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"40.36333192489341%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"40.62732310837508%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"40.62732310837508%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"40.62732310837508%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"40.62732310837508%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"40.62732310837508%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"40.62732310837508%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"40.62732310837508%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"40.62732310837508%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"40.828381217746575%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"40.828381217746575%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"40.828381217746575%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"40.828381217746575%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"40.828381217746575%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"40.828381217746575%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"40.828381217746575%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"40.828381217746575%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"41.00586699281236%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"41.00586699281236%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"41.00586699281236%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"41.00586699281236%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"41.00586699281236%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"41.00586699281236%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"41.00586699281236%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"41.00586699281236%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"41.13334623571875%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"41.13334623571875%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"41.13334623571875%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"41.13334623571875%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"41.13334623571875%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"41.13334623571875%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"41.13334623571875%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"41.13334623571875%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"41.16387800779905%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"41.16387800779905%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"41.16387800779905%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"41.16387800779905%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"41.16387800779905%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"41.16387800779905%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"41.16387800779905%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"41.16387800779905%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"41.16633938282675%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"41.16633938282675%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"41.16633938282675%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"41.16633938282675%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"41.16633938282675%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"41.16633938282675%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"41.16633938282675%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"41.16633938282675%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"31.285572689462583%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"41.16781519554857%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"34.165457572227346%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"31.285572689462583%\" y=\"40\" height=\"20\" width=\"2.879884882764763%\" onmouseover=\"document.getElementById('_tp_ifgglesnbrcssmrkbmny_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_7').style.opacity = 1;document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ifgglesnbrcssmrkbmny_ind_7').style.textDecoration = 'none';document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_7').style.opacity = 0;document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"36.39849140534784%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"34.165457572227346%\" y=\"40\" height=\"20\" width=\"2.233033833120494%\" onmouseover=\"document.getElementById('_tp_ifgglesnbrcssmrkbmny_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_11').style.opacity = 1;document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ifgglesnbrcssmrkbmny_ind_11').style.textDecoration = 'none';document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_11').style.opacity = 0;document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"38.18237779014663%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"36.39849140534784%\" y=\"40\" height=\"20\" width=\"1.783886384798791%\" onmouseover=\"document.getElementById('_tp_ifgglesnbrcssmrkbmny_ind_19').style.textDecoration = 'underline';document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_19').style.opacity = 1;document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_19').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ifgglesnbrcssmrkbmny_ind_19').style.textDecoration = 'none';document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_19').style.opacity = 0;document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_19').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"39.303296793152754%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"38.18237779014663%\" y=\"40\" height=\"20\" width=\"1.1209190030061222%\" onmouseover=\"document.getElementById('_tp_ifgglesnbrcssmrkbmny_ind_21').style.textDecoration = 'underline';document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_21').style.opacity = 1;document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_21').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ifgglesnbrcssmrkbmny_ind_21').style.textDecoration = 'none';document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_21').style.opacity = 0;document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_21').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"39.70657727691556%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"39.303296793152754%\" y=\"40\" height=\"20\" width=\"0.40328048376280634%\" onmouseover=\"document.getElementById('_tp_ifgglesnbrcssmrkbmny_ind_20').style.textDecoration = 'underline';document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_20').style.opacity = 1;document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_20').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ifgglesnbrcssmrkbmny_ind_20').style.textDecoration = 'none';document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_20').style.opacity = 0;document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_20').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"40.04094855721649%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"39.70657727691556%\" y=\"40\" height=\"20\" width=\"0.3343712803009282%\" onmouseover=\"document.getElementById('_tp_ifgglesnbrcssmrkbmny_ind_13').style.textDecoration = 'underline';document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_13').style.opacity = 1;document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_13').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ifgglesnbrcssmrkbmny_ind_13').style.textDecoration = 'none';document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_13').style.opacity = 0;document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_13').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"40.36333192489341%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"40.04094855721649%\" y=\"40\" height=\"20\" width=\"0.32238336767692033%\" onmouseover=\"document.getElementById('_tp_ifgglesnbrcssmrkbmny_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_6').style.opacity = 1;document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ifgglesnbrcssmrkbmny_ind_6').style.textDecoration = 'none';document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_6').style.opacity = 0;document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"40.62732310837508%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"40.36333192489341%\" y=\"40\" height=\"20\" width=\"0.2639911834816715%\" onmouseover=\"document.getElementById('_tp_ifgglesnbrcssmrkbmny_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_5').style.opacity = 1;document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ifgglesnbrcssmrkbmny_ind_5').style.textDecoration = 'none';document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_5').style.opacity = 0;document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"40.828381217746575%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"40.62732310837508%\" y=\"40\" height=\"20\" width=\"0.2010581093714947%\" onmouseover=\"document.getElementById('_tp_ifgglesnbrcssmrkbmny_ind_14').style.textDecoration = 'underline';document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_14').style.opacity = 1;document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_14').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ifgglesnbrcssmrkbmny_ind_14').style.textDecoration = 'none';document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_14').style.opacity = 0;document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_14').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"41.00586699281236%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"40.828381217746575%\" y=\"40\" height=\"20\" width=\"0.177485775065783%\" onmouseover=\"document.getElementById('_tp_ifgglesnbrcssmrkbmny_ind_17').style.textDecoration = 'underline';document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_17').style.opacity = 1;document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_17').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ifgglesnbrcssmrkbmny_ind_17').style.textDecoration = 'none';document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_17').style.opacity = 0;document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_17').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"41.13334623571875%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"41.00586699281236%\" y=\"40\" height=\"20\" width=\"0.12747924290638935%\" onmouseover=\"document.getElementById('_tp_ifgglesnbrcssmrkbmny_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_8').style.opacity = 1;document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ifgglesnbrcssmrkbmny_ind_8').style.textDecoration = 'none';document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_8').style.opacity = 0;document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"41.16387800779905%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"41.13334623571875%\" y=\"40\" height=\"20\" width=\"0.030531772080301778%\" onmouseover=\"document.getElementById('_tp_ifgglesnbrcssmrkbmny_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_3').style.opacity = 1;document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ifgglesnbrcssmrkbmny_ind_3').style.textDecoration = 'none';document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_3').style.opacity = 0;document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"41.16633938282675%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"41.16387800779905%\" y=\"40\" height=\"20\" width=\"0.0024613750276998303%\" onmouseover=\"document.getElementById('_tp_ifgglesnbrcssmrkbmny_ind_22').style.textDecoration = 'underline';document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_22').style.opacity = 1;document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_22').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ifgglesnbrcssmrkbmny_ind_22').style.textDecoration = 'none';document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_22').style.opacity = 0;document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_22').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"41.16633938282675%\" y=\"40\" height=\"20\" width=\"0.0014758127218215122%\" onmouseover=\"document.getElementById('_tp_ifgglesnbrcssmrkbmny_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_0').style.opacity = 1;document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ifgglesnbrcssmrkbmny_ind_0').style.textDecoration = 'none';document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_0').style.opacity = 0;document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_ifgglesnbrcssmrkbmny_ind_0'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_0').style.opacity = 1; document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_0').style.opacity = 0; document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.001</div\n",
|
|
" ><div id='_tp_ifgglesnbrcssmrkbmny_ind_1'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_1').style.opacity = 1; document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_1').style.opacity = 0; document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_1').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.001</div\n",
|
|
" ><div id='_tp_ifgglesnbrcssmrkbmny_ind_2'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_2').style.opacity = 1; document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_2').style.opacity = 0; document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_2').style.opacity = 0;\"\n",
|
|
" >can </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.001</div\n",
|
|
" ><div id='_tp_ifgglesnbrcssmrkbmny_ind_3'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_3').style.opacity = 1; document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_3').style.opacity = 0; document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_3').style.opacity = 0;\"\n",
|
|
" >go </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_ifgglesnbrcssmrkbmny_ind_4'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_4').style.opacity = 1; document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_4').style.opacity = 0; document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_4').style.opacity = 0;\"\n",
|
|
" >from </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.005</div\n",
|
|
" ><div id='_tp_ifgglesnbrcssmrkbmny_ind_5'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_5').style.opacity = 1; document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_5').style.opacity = 0; document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_5').style.opacity = 0;\"\n",
|
|
" >feeling </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.006</div\n",
|
|
" ><div id='_tp_ifgglesnbrcssmrkbmny_ind_6'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_6').style.opacity = 1; document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_6').style.opacity = 0; document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_6').style.opacity = 0;\"\n",
|
|
" >so </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.049</div\n",
|
|
" ><div id='_tp_ifgglesnbrcssmrkbmny_ind_7'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.05407011289364222); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_7').style.opacity = 1; document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_7').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_7').style.opacity = 0; document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_7').style.opacity = 0;\"\n",
|
|
" >hopeless </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.002</div\n",
|
|
" ><div id='_tp_ifgglesnbrcssmrkbmny_ind_8'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_8').style.opacity = 1; document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_8').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_8').style.opacity = 0; document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_8').style.opacity = 0;\"\n",
|
|
" >to </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_ifgglesnbrcssmrkbmny_ind_9'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_9').style.opacity = 1; document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_9').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_9').style.opacity = 0; document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_9').style.opacity = 0;\"\n",
|
|
" >so </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_ifgglesnbrcssmrkbmny_ind_10'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_10').style.opacity = 1; document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_10').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_10').style.opacity = 0; document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_10').style.opacity = 0;\"\n",
|
|
" >damned </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.038</div\n",
|
|
" ><div id='_tp_ifgglesnbrcssmrkbmny_ind_11'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03830461477520309); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_11').style.opacity = 1; document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_11').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_11').style.opacity = 0; document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_11').style.opacity = 0;\"\n",
|
|
" >hopeful </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.002</div\n",
|
|
" ><div id='_tp_ifgglesnbrcssmrkbmny_ind_12'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_12').style.opacity = 1; document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_12').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_12').style.opacity = 0; document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_12').style.opacity = 0;\"\n",
|
|
" >just </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.006</div\n",
|
|
" ><div id='_tp_ifgglesnbrcssmrkbmny_ind_13'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_13').style.opacity = 1; document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_13').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_13').style.opacity = 0; document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_13').style.opacity = 0;\"\n",
|
|
" >from </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.003</div\n",
|
|
" ><div id='_tp_ifgglesnbrcssmrkbmny_ind_14'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_14').style.opacity = 1; document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_14').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_14').style.opacity = 0; document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_14').style.opacity = 0;\"\n",
|
|
" >being </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.003</div\n",
|
|
" ><div id='_tp_ifgglesnbrcssmrkbmny_ind_15'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_15').style.opacity = 1; document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_15').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_15').style.opacity = 0; document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_15').style.opacity = 0;\"\n",
|
|
" >around </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.019</div\n",
|
|
" ><div id='_tp_ifgglesnbrcssmrkbmny_ind_16'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.014656367597544035); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_16').style.opacity = 1; document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_16').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_16').style.opacity = 0; document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_16').style.opacity = 0;\"\n",
|
|
" >someone </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.003</div\n",
|
|
" ><div id='_tp_ifgglesnbrcssmrkbmny_ind_17'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_17').style.opacity = 1; document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_17').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_17').style.opacity = 0; document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_17').style.opacity = 0;\"\n",
|
|
" >who </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.049</div\n",
|
|
" ><div id='_tp_ifgglesnbrcssmrkbmny_ind_18'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.05407011289364243); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_18').style.opacity = 1; document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_18').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_18').style.opacity = 0; document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_18').style.opacity = 0;\"\n",
|
|
" >cares </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.031</div\n",
|
|
" ><div id='_tp_ifgglesnbrcssmrkbmny_ind_19'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03042186571598325); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_19').style.opacity = 1; document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_19').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_19').style.opacity = 0; document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_19').style.opacity = 0;\"\n",
|
|
" >and </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.007</div\n",
|
|
" ><div id='_tp_ifgglesnbrcssmrkbmny_ind_20'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_20').style.opacity = 1; document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_20').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_20').style.opacity = 0; document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_20').style.opacity = 0;\"\n",
|
|
" >is </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.019</div\n",
|
|
" ><div id='_tp_ifgglesnbrcssmrkbmny_ind_21'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_21').style.opacity = 1; document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_21').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_21').style.opacity = 0; document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_21').style.opacity = 0;\"\n",
|
|
" >awake</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_ifgglesnbrcssmrkbmny_ind_22'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_22').style.opacity = 1; document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_22').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ifgglesnbrcssmrkbmny_ind_22').style.opacity = 0; document.getElementById('_fs_ifgglesnbrcssmrkbmny_ind_22').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_mqwalcomvemcxolagrxb_output_2_zoom' style='display: none;'><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"50.51286063161754%\" y1=\"33\" x2=\"50.51286063161754%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"50.51286063161754%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.05</text><line x1=\"36.86670243669303%\" y1=\"33\" x2=\"36.86670243669303%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"36.86670243669303%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.01</text><line x1=\"23.22054424176852%\" y1=\"33\" x2=\"23.22054424176852%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"23.22054424176852%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.03</text><line x1=\"9.574386046844012%\" y1=\"33\" x2=\"9.574386046844012%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"9.574386046844012%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.07</text><line x1=\"64.15901882654205%\" y1=\"33\" x2=\"64.15901882654205%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"64.15901882654205%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.09</text><line x1=\"77.80517702146656%\" y1=\"33\" x2=\"77.80517702146656%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"77.80517702146656%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.13</text><line x1=\"91.45133521639107%\" y1=\"33\" x2=\"91.45133521639107%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"91.45133521639107%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.17</text><line x1=\"66.2049413732173%\" y1=\"33\" x2=\"66.2049413732173%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"66.2049413732173%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.0959971</text><text x=\"66.2049413732173%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.0959971</text><text x=\"66.2049413732173%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"33.79505521524314%\" y1=\"33\" x2=\"33.79505521524314%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"33.79505521524314%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.000996302</text><text x=\"33.79505521524314%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.000996302</text><text x=\"33.79505521524314%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">love</tspan>(inputs)</text><rect x=\"8.336527195922002%\" width=\"25.45852801932114%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"16.93503972215449%\" x2=\"33.79505521524314%\" y1=\"60\" y2=\"60\" id=\"_fb_xrlrulgmntbkcsogsems_ind_18\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"25.365047468698812%\" y=\"71\" font-size=\"12px\" id=\"_fs_xrlrulgmntbkcsogsems_ind_18\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.049</text><svg x=\"16.93503972215449%\" y=\"40\" height=\"20\" width=\"16.86001549308865%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">cares</text> </svg></svg><line x1=\"10.537433643356664%\" x2=\"16.93503972215449%\" y1=\"60\" y2=\"60\" id=\"_fb_xrlrulgmntbkcsogsems_ind_16\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"13.736236682755576%\" y=\"71\" font-size=\"12px\" id=\"_fs_xrlrulgmntbkcsogsems_ind_16\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.019</text><svg x=\"10.537433643356664%\" y=\"40\" height=\"20\" width=\"6.397606078797825%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">someone</text> </svg></svg><line x1=\"9.604529643255868%\" x2=\"10.537433643356664%\" y1=\"60\" y2=\"60\" id=\"_fb_xrlrulgmntbkcsogsems_ind_15\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"10.070981643306265%\" y=\"71\" font-size=\"12px\" id=\"_fs_xrlrulgmntbkcsogsems_ind_15\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.003</text><svg x=\"9.604529643255868%\" y=\"40\" height=\"20\" width=\"0.9329040001007964%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">around</text> </svg></svg><line x1=\"9.064810535931924%\" x2=\"9.604529643255868%\" y1=\"60\" y2=\"60\" id=\"_fb_xrlrulgmntbkcsogsems_ind_12\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"9.334670089593896%\" y=\"71\" font-size=\"12px\" id=\"_fs_xrlrulgmntbkcsogsems_ind_12\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.002</text><svg x=\"9.064810535931924%\" y=\"40\" height=\"20\" width=\"0.5397191073239433%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">just</text> </svg></svg><line x1=\"8.714592600702723%\" x2=\"9.064810535931924%\" y1=\"60\" y2=\"60\" id=\"_fb_xrlrulgmntbkcsogsems_ind_1\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.889701568317324%\" y=\"71\" font-size=\"12px\" id=\"_fs_xrlrulgmntbkcsogsems_ind_1\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.001</text><svg x=\"8.714592600702723%\" y=\"40\" height=\"20\" width=\"0.3502179352292014%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"8.400907528096678%\" x2=\"8.714592600702723%\" y1=\"60\" y2=\"60\" id=\"_fb_xrlrulgmntbkcsogsems_ind_2\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.5577500643997%\" y=\"71\" font-size=\"12px\" id=\"_fs_xrlrulgmntbkcsogsems_ind_2\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.001</text><svg x=\"8.400907528096678%\" y=\"40\" height=\"20\" width=\"0.31368507260604517%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">can</text> </svg></svg><line x1=\"8.347684569062412%\" x2=\"8.400907528096678%\" y1=\"60\" y2=\"60\" id=\"_fb_xrlrulgmntbkcsogsems_ind_4\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.374296048579545%\" y=\"71\" font-size=\"12px\" id=\"_fs_xrlrulgmntbkcsogsems_ind_4\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"8.347684569062412%\" y=\"40\" height=\"20\" width=\"0.053222959034265216%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><line x1=\"8.340765958731813%\" x2=\"8.347684569062412%\" y1=\"60\" y2=\"60\" id=\"_fb_xrlrulgmntbkcsogsems_ind_10\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.344225263897112%\" y=\"71\" font-size=\"12px\" id=\"_fs_xrlrulgmntbkcsogsems_ind_10\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"8.340765958731813%\" y=\"40\" height=\"20\" width=\"0.006918610330599151%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">damned</text> </svg></svg><line x1=\"8.336527195922002%\" x2=\"8.340765958731813%\" y1=\"60\" y2=\"60\" id=\"_fb_xrlrulgmntbkcsogsems_ind_9\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.338646577326909%\" y=\"71\" font-size=\"12px\" id=\"_fs_xrlrulgmntbkcsogsems_ind_9\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"8.336527195922002%\" y=\"40\" height=\"20\" width=\"0.0042387628098108365%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"16.93503972215449%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"16.93503972215449%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"16.93503972215449%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"16.93503972215449%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"16.93503972215449%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"16.93503972215449%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"16.93503972215449%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"16.93503972215449%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"10.537433643356664%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"10.537433643356664%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"10.537433643356664%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"10.537433643356664%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"10.537433643356664%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"10.537433643356664%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"10.537433643356664%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"10.537433643356664%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"9.604529643255868%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"9.604529643255868%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"9.604529643255868%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"9.604529643255868%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"9.604529643255868%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"9.604529643255868%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"9.604529643255868%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"9.604529643255868%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"9.064810535931924%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"9.064810535931924%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"9.064810535931924%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"9.064810535931924%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"9.064810535931924%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"9.064810535931924%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"9.064810535931924%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"9.064810535931924%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.714592600702723%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.714592600702723%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.714592600702723%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.714592600702723%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.714592600702723%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.714592600702723%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.714592600702723%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.714592600702723%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.400907528096678%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.400907528096678%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.400907528096678%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.400907528096678%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.400907528096678%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.400907528096678%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.400907528096678%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.400907528096678%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.347684569062412%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.347684569062412%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.347684569062412%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.347684569062412%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.347684569062412%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.347684569062412%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.347684569062412%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.347684569062412%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.340765958731813%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.340765958731813%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.340765958731813%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.340765958731813%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.340765958731813%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.340765958731813%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.340765958731813%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.340765958731813%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"33.79505521524314%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.336527195922002%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"33.79505521524314%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"16.93503972215449%\" y=\"40\" height=\"20\" width=\"16.86001549308865%\" onmouseover=\"document.getElementById('_tp_xrlrulgmntbkcsogsems_ind_18').style.textDecoration = 'underline';document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_18').style.opacity = 1;document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_18').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xrlrulgmntbkcsogsems_ind_18').style.textDecoration = 'none';document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_18').style.opacity = 0;document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_18').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"16.93503972215449%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"10.537433643356664%\" y=\"40\" height=\"20\" width=\"6.397606078797825%\" onmouseover=\"document.getElementById('_tp_xrlrulgmntbkcsogsems_ind_16').style.textDecoration = 'underline';document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_16').style.opacity = 1;document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_16').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xrlrulgmntbkcsogsems_ind_16').style.textDecoration = 'none';document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_16').style.opacity = 0;document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_16').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"10.537433643356664%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"9.604529643255868%\" y=\"40\" height=\"20\" width=\"0.9329040001007964%\" onmouseover=\"document.getElementById('_tp_xrlrulgmntbkcsogsems_ind_15').style.textDecoration = 'underline';document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_15').style.opacity = 1;document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_15').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xrlrulgmntbkcsogsems_ind_15').style.textDecoration = 'none';document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_15').style.opacity = 0;document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_15').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"9.604529643255868%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"9.064810535931924%\" y=\"40\" height=\"20\" width=\"0.5397191073239433%\" onmouseover=\"document.getElementById('_tp_xrlrulgmntbkcsogsems_ind_12').style.textDecoration = 'underline';document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_12').style.opacity = 1;document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_12').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xrlrulgmntbkcsogsems_ind_12').style.textDecoration = 'none';document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_12').style.opacity = 0;document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_12').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"9.064810535931924%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.714592600702723%\" y=\"40\" height=\"20\" width=\"0.3502179352292014%\" onmouseover=\"document.getElementById('_tp_xrlrulgmntbkcsogsems_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_1').style.opacity = 1;document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xrlrulgmntbkcsogsems_ind_1').style.textDecoration = 'none';document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_1').style.opacity = 0;document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"8.714592600702723%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.400907528096678%\" y=\"40\" height=\"20\" width=\"0.31368507260604517%\" onmouseover=\"document.getElementById('_tp_xrlrulgmntbkcsogsems_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_2').style.opacity = 1;document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xrlrulgmntbkcsogsems_ind_2').style.textDecoration = 'none';document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_2').style.opacity = 0;document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"8.400907528096678%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.347684569062412%\" y=\"40\" height=\"20\" width=\"0.053222959034265216%\" onmouseover=\"document.getElementById('_tp_xrlrulgmntbkcsogsems_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_4').style.opacity = 1;document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xrlrulgmntbkcsogsems_ind_4').style.textDecoration = 'none';document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_4').style.opacity = 0;document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"8.347684569062412%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.340765958731813%\" y=\"40\" height=\"20\" width=\"0.006918610330599151%\" onmouseover=\"document.getElementById('_tp_xrlrulgmntbkcsogsems_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_10').style.opacity = 1;document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xrlrulgmntbkcsogsems_ind_10').style.textDecoration = 'none';document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_10').style.opacity = 0;document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"8.336527195922002%\" y=\"40\" height=\"20\" width=\"0.0042387628098108365%\" onmouseover=\"document.getElementById('_tp_xrlrulgmntbkcsogsems_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_9').style.opacity = 1;document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xrlrulgmntbkcsogsems_ind_9').style.textDecoration = 'none';document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_9').style.opacity = 0;document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"33.79505521524314%\" width=\"57.86841417729529%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"33.79505521524314%\" x2=\"50.65907884916312%\" y1=\"60\" y2=\"60\" id=\"_fb_xrlrulgmntbkcsogsems_ind_7\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"42.22706703220313%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_xrlrulgmntbkcsogsems_ind_7\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.049</text><svg x=\"33.79505521524314%\" y=\"40\" height=\"20\" width=\"16.864023633919984%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeless</text> </svg></svg><line x1=\"50.65907884916312%\" x2=\"63.73527351321319%\" y1=\"60\" y2=\"60\" id=\"_fb_xrlrulgmntbkcsogsems_ind_11\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"57.197176181188155%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_xrlrulgmntbkcsogsems_ind_11\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.038</text><svg x=\"50.65907884916312%\" y=\"40\" height=\"20\" width=\"13.076194664050064%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeful</text> </svg></svg><line x1=\"63.73527351321319%\" x2=\"74.18135152609331%\" y1=\"60\" y2=\"60\" id=\"_fb_xrlrulgmntbkcsogsems_ind_19\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"68.95831251965325%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_xrlrulgmntbkcsogsems_ind_19\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.031</text><svg x=\"63.73527351321319%\" y=\"40\" height=\"20\" width=\"10.446078012880122%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">and</text> </svg></svg><line x1=\"74.18135152609331%\" x2=\"80.74522658635537%\" y1=\"60\" y2=\"60\" id=\"_fb_xrlrulgmntbkcsogsems_ind_21\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"77.46328905622434%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_xrlrulgmntbkcsogsems_ind_21\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.019</text><svg x=\"74.18135152609331%\" y=\"40\" height=\"20\" width=\"6.563875060262063%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">awake</text> </svg></svg><line x1=\"80.74522658635537%\" x2=\"83.10675556620316%\" y1=\"60\" y2=\"60\" id=\"_fb_xrlrulgmntbkcsogsems_ind_20\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"81.92599107627927%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_xrlrulgmntbkcsogsems_ind_20\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.007</text><svg x=\"80.74522658635537%\" y=\"40\" height=\"20\" width=\"2.3615289798477903%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">is</text> </svg></svg><line x1=\"83.10675556620316%\" x2=\"85.06476618226831%\" y1=\"60\" y2=\"60\" id=\"_fb_xrlrulgmntbkcsogsems_ind_13\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"84.08576087423575%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_xrlrulgmntbkcsogsems_ind_13\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.006</text><svg x=\"83.10675556620316%\" y=\"40\" height=\"20\" width=\"1.9580106160651525%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><line x1=\"85.06476618226831%\" x2=\"86.95257800565862%\" y1=\"60\" y2=\"60\" id=\"_fb_xrlrulgmntbkcsogsems_ind_6\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"86.00867209396347%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_xrlrulgmntbkcsogsems_ind_6\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.006</text><svg x=\"85.06476618226831%\" y=\"40\" height=\"20\" width=\"1.887811823390308%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><line x1=\"86.95257800565862%\" x2=\"88.49845700381753%\" y1=\"60\" y2=\"60\" id=\"_fb_xrlrulgmntbkcsogsems_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"87.72551750473808%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_xrlrulgmntbkcsogsems_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.005</text><svg x=\"86.95257800565862%\" y=\"40\" height=\"20\" width=\"1.545878998158912%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feeling</text> </svg></svg><line x1=\"88.49845700381753%\" x2=\"89.67581264345583%\" y1=\"60\" y2=\"60\" id=\"_fb_xrlrulgmntbkcsogsems_ind_14\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"89.08713482363669%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_xrlrulgmntbkcsogsems_ind_14\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.003</text><svg x=\"88.49845700381753%\" y=\"40\" height=\"20\" width=\"1.177355639638293%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">being</text> </svg></svg><line x1=\"89.67581264345583%\" x2=\"90.71513345912693%\" y1=\"60\" y2=\"60\" id=\"_fb_xrlrulgmntbkcsogsems_ind_17\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"90.19547305129137%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_xrlrulgmntbkcsogsems_ind_17\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.003</text><svg x=\"89.67581264345583%\" y=\"40\" height=\"20\" width=\"1.039320815671104%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">who</text> </svg></svg><line x1=\"90.71513345912693%\" x2=\"91.46162613252287%\" y1=\"60\" y2=\"60\" id=\"_fb_xrlrulgmntbkcsogsems_ind_8\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.08837979582489%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_xrlrulgmntbkcsogsems_ind_8\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.002</text><svg x=\"90.71513345912693%\" y=\"40\" height=\"20\" width=\"0.7464926733959345%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><line x1=\"91.46162613252287%\" x2=\"91.64041401707655%\" y1=\"60\" y2=\"60\" id=\"_fb_xrlrulgmntbkcsogsems_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.55102007479971%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_xrlrulgmntbkcsogsems_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.001</text><svg x=\"91.46162613252287%\" y=\"40\" height=\"20\" width=\"0.17878788455368522%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">go</text> </svg></svg><line x1=\"91.64041401707655%\" x2=\"91.65482733161127%\" y1=\"60\" y2=\"60\" id=\"_fb_xrlrulgmntbkcsogsems_ind_22\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.64762067434391%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_xrlrulgmntbkcsogsems_ind_22\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"91.64041401707655%\" y=\"40\" height=\"20\" width=\"0.014413314534721167%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><line x1=\"91.65482733161127%\" x2=\"91.66346939253842%\" y1=\"60\" y2=\"60\" id=\"_fb_xrlrulgmntbkcsogsems_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.65914836207484%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_xrlrulgmntbkcsogsems_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"91.65482733161127%\" y=\"40\" height=\"20\" width=\"0.008642060927144257%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"50.65907884916312%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"50.65907884916312%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"50.65907884916312%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"50.65907884916312%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"50.65907884916312%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"50.65907884916312%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"50.65907884916312%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"50.65907884916312%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"63.73527351321319%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"63.73527351321319%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"63.73527351321319%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"63.73527351321319%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"63.73527351321319%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"63.73527351321319%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"63.73527351321319%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"63.73527351321319%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"74.18135152609331%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"74.18135152609331%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"74.18135152609331%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"74.18135152609331%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"74.18135152609331%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"74.18135152609331%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"74.18135152609331%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"74.18135152609331%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"80.74522658635537%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"80.74522658635537%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"80.74522658635537%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"80.74522658635537%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"80.74522658635537%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"80.74522658635537%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"80.74522658635537%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"80.74522658635537%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"83.10675556620316%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"83.10675556620316%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"83.10675556620316%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"83.10675556620316%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"83.10675556620316%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"83.10675556620316%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"83.10675556620316%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"83.10675556620316%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"85.06476618226831%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"85.06476618226831%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"85.06476618226831%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"85.06476618226831%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"85.06476618226831%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"85.06476618226831%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"85.06476618226831%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"85.06476618226831%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"86.95257800565862%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"86.95257800565862%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"86.95257800565862%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"86.95257800565862%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"86.95257800565862%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"86.95257800565862%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"86.95257800565862%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"86.95257800565862%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"88.49845700381753%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"88.49845700381753%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"88.49845700381753%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"88.49845700381753%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"88.49845700381753%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"88.49845700381753%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"88.49845700381753%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"88.49845700381753%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"89.67581264345583%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"89.67581264345583%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"89.67581264345583%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"89.67581264345583%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"89.67581264345583%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"89.67581264345583%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"89.67581264345583%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"89.67581264345583%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"90.71513345912693%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.71513345912693%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.71513345912693%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.71513345912693%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.71513345912693%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.71513345912693%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.71513345912693%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.71513345912693%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.46162613252287%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.46162613252287%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.46162613252287%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.46162613252287%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.46162613252287%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.46162613252287%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.46162613252287%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.46162613252287%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.64041401707655%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.64041401707655%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.64041401707655%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.64041401707655%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.64041401707655%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.64041401707655%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.64041401707655%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.64041401707655%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.65482733161127%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.65482733161127%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.65482733161127%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.65482733161127%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.65482733161127%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.65482733161127%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.65482733161127%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.65482733161127%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"33.79505521524314%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66346939253842%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"50.65907884916312%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"33.79505521524314%\" y=\"40\" height=\"20\" width=\"16.864023633919984%\" onmouseover=\"document.getElementById('_tp_xrlrulgmntbkcsogsems_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_7').style.opacity = 1;document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xrlrulgmntbkcsogsems_ind_7').style.textDecoration = 'none';document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_7').style.opacity = 0;document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"63.73527351321319%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"50.65907884916312%\" y=\"40\" height=\"20\" width=\"13.076194664050064%\" onmouseover=\"document.getElementById('_tp_xrlrulgmntbkcsogsems_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_11').style.opacity = 1;document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xrlrulgmntbkcsogsems_ind_11').style.textDecoration = 'none';document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_11').style.opacity = 0;document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"74.18135152609331%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"63.73527351321319%\" y=\"40\" height=\"20\" width=\"10.446078012880122%\" onmouseover=\"document.getElementById('_tp_xrlrulgmntbkcsogsems_ind_19').style.textDecoration = 'underline';document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_19').style.opacity = 1;document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_19').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xrlrulgmntbkcsogsems_ind_19').style.textDecoration = 'none';document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_19').style.opacity = 0;document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_19').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"80.74522658635537%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"74.18135152609331%\" y=\"40\" height=\"20\" width=\"6.563875060262063%\" onmouseover=\"document.getElementById('_tp_xrlrulgmntbkcsogsems_ind_21').style.textDecoration = 'underline';document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_21').style.opacity = 1;document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_21').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xrlrulgmntbkcsogsems_ind_21').style.textDecoration = 'none';document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_21').style.opacity = 0;document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_21').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"83.10675556620316%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"80.74522658635537%\" y=\"40\" height=\"20\" width=\"2.3615289798477903%\" onmouseover=\"document.getElementById('_tp_xrlrulgmntbkcsogsems_ind_20').style.textDecoration = 'underline';document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_20').style.opacity = 1;document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_20').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xrlrulgmntbkcsogsems_ind_20').style.textDecoration = 'none';document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_20').style.opacity = 0;document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_20').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"85.06476618226831%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"83.10675556620316%\" y=\"40\" height=\"20\" width=\"1.9580106160651525%\" onmouseover=\"document.getElementById('_tp_xrlrulgmntbkcsogsems_ind_13').style.textDecoration = 'underline';document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_13').style.opacity = 1;document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_13').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xrlrulgmntbkcsogsems_ind_13').style.textDecoration = 'none';document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_13').style.opacity = 0;document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_13').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"86.95257800565862%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"85.06476618226831%\" y=\"40\" height=\"20\" width=\"1.887811823390308%\" onmouseover=\"document.getElementById('_tp_xrlrulgmntbkcsogsems_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_6').style.opacity = 1;document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xrlrulgmntbkcsogsems_ind_6').style.textDecoration = 'none';document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_6').style.opacity = 0;document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"88.49845700381753%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"86.95257800565862%\" y=\"40\" height=\"20\" width=\"1.545878998158912%\" onmouseover=\"document.getElementById('_tp_xrlrulgmntbkcsogsems_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_5').style.opacity = 1;document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xrlrulgmntbkcsogsems_ind_5').style.textDecoration = 'none';document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_5').style.opacity = 0;document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"89.67581264345583%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"88.49845700381753%\" y=\"40\" height=\"20\" width=\"1.177355639638293%\" onmouseover=\"document.getElementById('_tp_xrlrulgmntbkcsogsems_ind_14').style.textDecoration = 'underline';document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_14').style.opacity = 1;document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_14').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xrlrulgmntbkcsogsems_ind_14').style.textDecoration = 'none';document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_14').style.opacity = 0;document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_14').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"90.71513345912693%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"89.67581264345583%\" y=\"40\" height=\"20\" width=\"1.039320815671104%\" onmouseover=\"document.getElementById('_tp_xrlrulgmntbkcsogsems_ind_17').style.textDecoration = 'underline';document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_17').style.opacity = 1;document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_17').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xrlrulgmntbkcsogsems_ind_17').style.textDecoration = 'none';document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_17').style.opacity = 0;document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_17').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.46162613252287%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"90.71513345912693%\" y=\"40\" height=\"20\" width=\"0.7464926733959345%\" onmouseover=\"document.getElementById('_tp_xrlrulgmntbkcsogsems_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_8').style.opacity = 1;document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xrlrulgmntbkcsogsems_ind_8').style.textDecoration = 'none';document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_8').style.opacity = 0;document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.64041401707655%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.46162613252287%\" y=\"40\" height=\"20\" width=\"0.17878788455368522%\" onmouseover=\"document.getElementById('_tp_xrlrulgmntbkcsogsems_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_3').style.opacity = 1;document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xrlrulgmntbkcsogsems_ind_3').style.textDecoration = 'none';document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_3').style.opacity = 0;document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.65482733161127%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.64041401707655%\" y=\"40\" height=\"20\" width=\"0.014413314534721167%\" onmouseover=\"document.getElementById('_tp_xrlrulgmntbkcsogsems_ind_22').style.textDecoration = 'underline';document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_22').style.opacity = 1;document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_22').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xrlrulgmntbkcsogsems_ind_22').style.textDecoration = 'none';document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_22').style.opacity = 0;document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_22').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"91.65482733161127%\" y=\"40\" height=\"20\" width=\"0.008642060927144257%\" onmouseover=\"document.getElementById('_tp_xrlrulgmntbkcsogsems_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_0').style.opacity = 1;document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xrlrulgmntbkcsogsems_ind_0').style.textDecoration = 'none';document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_0').style.opacity = 0;document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_xrlrulgmntbkcsogsems_ind_0'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_0').style.opacity = 1; document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_0').style.opacity = 0; document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.001</div\n",
|
|
" ><div id='_tp_xrlrulgmntbkcsogsems_ind_1'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.014656367597544035); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_1').style.opacity = 1; document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_1').style.opacity = 0; document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_1').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.001</div\n",
|
|
" ><div id='_tp_xrlrulgmntbkcsogsems_ind_2'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.014656367597544035); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_2').style.opacity = 1; document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_2').style.opacity = 0; document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_2').style.opacity = 0;\"\n",
|
|
" >can </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.001</div\n",
|
|
" ><div id='_tp_xrlrulgmntbkcsogsems_ind_3'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_3').style.opacity = 1; document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_3').style.opacity = 0; document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_3').style.opacity = 0;\"\n",
|
|
" >go </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_xrlrulgmntbkcsogsems_ind_4'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_4').style.opacity = 1; document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_4').style.opacity = 0; document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_4').style.opacity = 0;\"\n",
|
|
" >from </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.005</div\n",
|
|
" ><div id='_tp_xrlrulgmntbkcsogsems_ind_5'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.08560110913052085); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_5').style.opacity = 1; document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_5').style.opacity = 0; document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_5').style.opacity = 0;\"\n",
|
|
" >feeling </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.006</div\n",
|
|
" ><div id='_tp_xrlrulgmntbkcsogsems_ind_6'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.10924935630817977); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_6').style.opacity = 1; document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_6').style.opacity = 0; document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_6').style.opacity = 0;\"\n",
|
|
" >so </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.049</div\n",
|
|
" ><div id='_tp_xrlrulgmntbkcsogsems_ind_7'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 1.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_7').style.opacity = 1; document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_7').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_7').style.opacity = 0; document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_7').style.opacity = 0;\"\n",
|
|
" >hopeless </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.002</div\n",
|
|
" ><div id='_tp_xrlrulgmntbkcsogsems_ind_8'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03830461477520309); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_8').style.opacity = 1; document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_8').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_8').style.opacity = 0; document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_8').style.opacity = 0;\"\n",
|
|
" >to </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_xrlrulgmntbkcsogsems_ind_9'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_9').style.opacity = 1; document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_9').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_9').style.opacity = 0; document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_9').style.opacity = 0;\"\n",
|
|
" >so </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_xrlrulgmntbkcsogsems_ind_10'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_10').style.opacity = 1; document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_10').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_10').style.opacity = 0; document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_10').style.opacity = 0;\"\n",
|
|
" >damned </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.038</div\n",
|
|
" ><div id='_tp_xrlrulgmntbkcsogsems_ind_11'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.7792830263418499); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_11').style.opacity = 1; document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_11').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_11').style.opacity = 0; document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_11').style.opacity = 0;\"\n",
|
|
" >hopeful </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.002</div\n",
|
|
" ><div id='_tp_xrlrulgmntbkcsogsems_ind_12'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.030421865715983164); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_12').style.opacity = 1; document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_12').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_12').style.opacity = 0; document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_12').style.opacity = 0;\"\n",
|
|
" >just </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.006</div\n",
|
|
" ><div id='_tp_xrlrulgmntbkcsogsems_ind_13'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.10924935630817977); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_13').style.opacity = 1; document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_13').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_13').style.opacity = 0; document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_13').style.opacity = 0;\"\n",
|
|
" >from </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.003</div\n",
|
|
" ><div id='_tp_xrlrulgmntbkcsogsems_ind_14'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.06195286195286191); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_14').style.opacity = 1; document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_14').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_14').style.opacity = 0; document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_14').style.opacity = 0;\"\n",
|
|
" >being </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.003</div\n",
|
|
" ><div id='_tp_xrlrulgmntbkcsogsems_ind_15'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.05407011289364243); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_15').style.opacity = 1; document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_15').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_15').style.opacity = 0; document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_15').style.opacity = 0;\"\n",
|
|
" >around </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.019</div\n",
|
|
" ><div id='_tp_xrlrulgmntbkcsogsems_ind_16'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.3772628243216479); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_16').style.opacity = 1; document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_16').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_16').style.opacity = 0; document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_16').style.opacity = 0;\"\n",
|
|
" >someone </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.003</div\n",
|
|
" ><div id='_tp_xrlrulgmntbkcsogsems_ind_17'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.05407011289364222); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_17').style.opacity = 1; document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_17').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_17').style.opacity = 0; document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_17').style.opacity = 0;\"\n",
|
|
" >who </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.049</div\n",
|
|
" ><div id='_tp_xrlrulgmntbkcsogsems_ind_18'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 1.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_18').style.opacity = 1; document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_18').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_18').style.opacity = 0; document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_18').style.opacity = 0;\"\n",
|
|
" >cares </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.031</div\n",
|
|
" ><div id='_tp_xrlrulgmntbkcsogsems_ind_19'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.621628045157457); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_19').style.opacity = 1; document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_19').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_19').style.opacity = 0; document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_19').style.opacity = 0;\"\n",
|
|
" >and </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.007</div\n",
|
|
" ><div id='_tp_xrlrulgmntbkcsogsems_ind_20'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.1328976034858387); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_20').style.opacity = 1; document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_20').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_20').style.opacity = 0; document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_20').style.opacity = 0;\"\n",
|
|
" >is </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.019</div\n",
|
|
" ><div id='_tp_xrlrulgmntbkcsogsems_ind_21'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.3851455733808674); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_21').style.opacity = 1; document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_21').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_21').style.opacity = 0; document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_21').style.opacity = 0;\"\n",
|
|
" >awake</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_xrlrulgmntbkcsogsems_ind_22'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_22').style.opacity = 1; document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_22').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xrlrulgmntbkcsogsems_ind_22').style.opacity = 0; document.getElementById('_fs_xrlrulgmntbkcsogsems_ind_22').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_mqwalcomvemcxolagrxb_output_3' style='display: none';><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"48.705281698548966%\" y1=\"33\" x2=\"48.705281698548966%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"48.705281698548966%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.3</text><line x1=\"37.053446541506865%\" y1=\"33\" x2=\"37.053446541506865%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"37.053446541506865%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.1</text><line x1=\"25.40161138446477%\" y1=\"33\" x2=\"25.40161138446477%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"25.40161138446477%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.1</text><line x1=\"13.749776227422668%\" y1=\"33\" x2=\"13.749776227422668%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"13.749776227422668%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.3</text><line x1=\"60.357116855591066%\" y1=\"33\" x2=\"60.357116855591066%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"60.357116855591066%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.5</text><line x1=\"72.00895201263315%\" y1=\"33\" x2=\"72.00895201263315%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"72.00895201263315%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.7</text><line x1=\"83.66078716967526%\" y1=\"33\" x2=\"83.66078716967526%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"83.66078716967526%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.9</text><line x1=\"47.052438732848%\" y1=\"33\" x2=\"47.052438732848%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"47.052438732848%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.271629</text><text x=\"47.052438732848%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.271629</text><text x=\"47.052438732848%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"31.254492462664754%\" y1=\"33\" x2=\"31.254492462664754%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"31.254492462664754%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.00046282</text><text x=\"31.254492462664754%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.00046282</text><text x=\"31.254492462664754%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">anger</tspan>(inputs)</text><rect x=\"28.665957066191872%\" width=\"2.5885353964728837%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"30.400462727351517%\" x2=\"31.254492462664754%\" y1=\"60\" y2=\"60\" id=\"_fb_bvegfwflavduxyliamjg_ind_10\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"30.827477595008133%\" y=\"71\" font-size=\"12px\" id=\"_fs_bvegfwflavduxyliamjg_ind_10\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.015</text><svg x=\"30.400462727351517%\" y=\"40\" height=\"20\" width=\"0.8540297353132367%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">damned</text> </svg></svg><line x1=\"29.974375807623403%\" x2=\"30.400462727351517%\" y1=\"60\" y2=\"60\" id=\"_fb_bvegfwflavduxyliamjg_ind_15\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"30.18741926748746%\" y=\"71\" font-size=\"12px\" id=\"_fs_bvegfwflavduxyliamjg_ind_15\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.007</text><svg x=\"29.974375807623403%\" y=\"40\" height=\"20\" width=\"0.42608691972811386%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">around</text> </svg></svg><line x1=\"29.675489919977473%\" x2=\"29.974375807623403%\" y1=\"60\" y2=\"60\" id=\"_fb_bvegfwflavduxyliamjg_ind_4\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"29.824932863800438%\" y=\"71\" font-size=\"12px\" id=\"_fs_bvegfwflavduxyliamjg_ind_4\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.005</text><svg x=\"29.675489919977473%\" y=\"40\" height=\"20\" width=\"0.2988858876459304%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><line x1=\"29.39815898488808%\" x2=\"29.675489919977473%\" y1=\"60\" y2=\"60\" id=\"_fb_bvegfwflavduxyliamjg_ind_8\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"29.536824452432775%\" y=\"71\" font-size=\"12px\" id=\"_fs_bvegfwflavduxyliamjg_ind_8\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.005</text><svg x=\"29.39815898488808%\" y=\"40\" height=\"20\" width=\"0.2773309350893918%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><line x1=\"29.169607131861%\" x2=\"29.39815898488808%\" y1=\"60\" y2=\"60\" id=\"_fb_bvegfwflavduxyliamjg_ind_9\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"29.283883058374542%\" y=\"71\" font-size=\"12px\" id=\"_fs_bvegfwflavduxyliamjg_ind_9\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.004</text><svg x=\"29.169607131861%\" y=\"40\" height=\"20\" width=\"0.22855185302708136%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><line x1=\"28.96834802452416%\" x2=\"29.169607131861%\" y1=\"60\" y2=\"60\" id=\"_fb_bvegfwflavduxyliamjg_ind_13\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"29.06897757819258%\" y=\"71\" font-size=\"12px\" id=\"_fs_bvegfwflavduxyliamjg_ind_13\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.003</text><svg x=\"28.96834802452416%\" y=\"40\" height=\"20\" width=\"0.20125910733683838%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><line x1=\"28.815499662989964%\" x2=\"28.96834802452416%\" y1=\"60\" y2=\"60\" id=\"_fb_bvegfwflavduxyliamjg_ind_3\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"28.891923843757063%\" y=\"71\" font-size=\"12px\" id=\"_fs_bvegfwflavduxyliamjg_ind_3\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.003</text><svg x=\"28.815499662989964%\" y=\"40\" height=\"20\" width=\"0.1528483615341969%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">go</text> </svg></svg><line x1=\"28.698077072316696%\" x2=\"28.815499662989964%\" y1=\"60\" y2=\"60\" id=\"_fb_bvegfwflavduxyliamjg_ind_1\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"28.75678836765333%\" y=\"71\" font-size=\"12px\" id=\"_fs_bvegfwflavduxyliamjg_ind_1\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.002</text><svg x=\"28.698077072316696%\" y=\"40\" height=\"20\" width=\"0.11742259067326799%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"28.665957066191872%\" x2=\"28.698077072316696%\" y1=\"60\" y2=\"60\" id=\"_fb_bvegfwflavduxyliamjg_ind_20\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"28.682017069254286%\" y=\"71\" font-size=\"12px\" id=\"_fs_bvegfwflavduxyliamjg_ind_20\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.001</text><svg x=\"28.665957066191872%\" y=\"40\" height=\"20\" width=\"0.03212000612482413%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">is</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"30.400462727351517%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"30.400462727351517%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"30.400462727351517%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"30.400462727351517%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"30.400462727351517%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"30.400462727351517%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"30.400462727351517%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"30.400462727351517%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"29.974375807623403%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"29.974375807623403%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"29.974375807623403%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"29.974375807623403%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"29.974375807623403%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"29.974375807623403%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"29.974375807623403%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"29.974375807623403%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"29.675489919977473%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"29.675489919977473%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"29.675489919977473%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"29.675489919977473%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"29.675489919977473%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"29.675489919977473%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"29.675489919977473%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"29.675489919977473%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"29.39815898488808%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"29.39815898488808%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"29.39815898488808%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"29.39815898488808%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"29.39815898488808%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"29.39815898488808%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"29.39815898488808%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"29.39815898488808%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"29.169607131861%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"29.169607131861%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"29.169607131861%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"29.169607131861%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"29.169607131861%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"29.169607131861%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"29.169607131861%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"29.169607131861%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"28.96834802452416%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"28.96834802452416%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"28.96834802452416%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"28.96834802452416%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"28.96834802452416%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"28.96834802452416%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"28.96834802452416%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"28.96834802452416%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"28.815499662989964%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"28.815499662989964%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"28.815499662989964%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"28.815499662989964%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"28.815499662989964%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"28.815499662989964%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"28.815499662989964%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"28.815499662989964%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"28.698077072316696%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"28.698077072316696%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"28.698077072316696%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"28.698077072316696%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"28.698077072316696%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"28.698077072316696%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"28.698077072316696%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"28.698077072316696%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"31.254492462664754%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"28.665957066191872%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"31.254492462664754%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"30.400462727351517%\" y=\"40\" height=\"20\" width=\"0.8540297353132367%\" onmouseover=\"document.getElementById('_tp_bvegfwflavduxyliamjg_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_bvegfwflavduxyliamjg_ind_10').style.opacity = 1;document.getElementById('_fb_bvegfwflavduxyliamjg_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_bvegfwflavduxyliamjg_ind_10').style.textDecoration = 'none';document.getElementById('_fs_bvegfwflavduxyliamjg_ind_10').style.opacity = 0;document.getElementById('_fb_bvegfwflavduxyliamjg_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"30.400462727351517%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"29.974375807623403%\" y=\"40\" height=\"20\" width=\"0.42608691972811386%\" onmouseover=\"document.getElementById('_tp_bvegfwflavduxyliamjg_ind_15').style.textDecoration = 'underline';document.getElementById('_fs_bvegfwflavduxyliamjg_ind_15').style.opacity = 1;document.getElementById('_fb_bvegfwflavduxyliamjg_ind_15').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_bvegfwflavduxyliamjg_ind_15').style.textDecoration = 'none';document.getElementById('_fs_bvegfwflavduxyliamjg_ind_15').style.opacity = 0;document.getElementById('_fb_bvegfwflavduxyliamjg_ind_15').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"29.974375807623403%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"29.675489919977473%\" y=\"40\" height=\"20\" width=\"0.2988858876459304%\" onmouseover=\"document.getElementById('_tp_bvegfwflavduxyliamjg_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_bvegfwflavduxyliamjg_ind_4').style.opacity = 1;document.getElementById('_fb_bvegfwflavduxyliamjg_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_bvegfwflavduxyliamjg_ind_4').style.textDecoration = 'none';document.getElementById('_fs_bvegfwflavduxyliamjg_ind_4').style.opacity = 0;document.getElementById('_fb_bvegfwflavduxyliamjg_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"29.675489919977473%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"29.39815898488808%\" y=\"40\" height=\"20\" width=\"0.2773309350893918%\" onmouseover=\"document.getElementById('_tp_bvegfwflavduxyliamjg_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_bvegfwflavduxyliamjg_ind_8').style.opacity = 1;document.getElementById('_fb_bvegfwflavduxyliamjg_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_bvegfwflavduxyliamjg_ind_8').style.textDecoration = 'none';document.getElementById('_fs_bvegfwflavduxyliamjg_ind_8').style.opacity = 0;document.getElementById('_fb_bvegfwflavduxyliamjg_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"29.39815898488808%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"29.169607131861%\" y=\"40\" height=\"20\" width=\"0.22855185302708136%\" onmouseover=\"document.getElementById('_tp_bvegfwflavduxyliamjg_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_bvegfwflavduxyliamjg_ind_9').style.opacity = 1;document.getElementById('_fb_bvegfwflavduxyliamjg_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_bvegfwflavduxyliamjg_ind_9').style.textDecoration = 'none';document.getElementById('_fs_bvegfwflavduxyliamjg_ind_9').style.opacity = 0;document.getElementById('_fb_bvegfwflavduxyliamjg_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"29.169607131861%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"28.96834802452416%\" y=\"40\" height=\"20\" width=\"0.20125910733683838%\" onmouseover=\"document.getElementById('_tp_bvegfwflavduxyliamjg_ind_13').style.textDecoration = 'underline';document.getElementById('_fs_bvegfwflavduxyliamjg_ind_13').style.opacity = 1;document.getElementById('_fb_bvegfwflavduxyliamjg_ind_13').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_bvegfwflavduxyliamjg_ind_13').style.textDecoration = 'none';document.getElementById('_fs_bvegfwflavduxyliamjg_ind_13').style.opacity = 0;document.getElementById('_fb_bvegfwflavduxyliamjg_ind_13').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"28.96834802452416%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"28.815499662989964%\" y=\"40\" height=\"20\" width=\"0.1528483615341969%\" onmouseover=\"document.getElementById('_tp_bvegfwflavduxyliamjg_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_bvegfwflavduxyliamjg_ind_3').style.opacity = 1;document.getElementById('_fb_bvegfwflavduxyliamjg_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_bvegfwflavduxyliamjg_ind_3').style.textDecoration = 'none';document.getElementById('_fs_bvegfwflavduxyliamjg_ind_3').style.opacity = 0;document.getElementById('_fb_bvegfwflavduxyliamjg_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"28.815499662989964%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"28.698077072316696%\" y=\"40\" height=\"20\" width=\"0.11742259067326799%\" onmouseover=\"document.getElementById('_tp_bvegfwflavduxyliamjg_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_bvegfwflavduxyliamjg_ind_1').style.opacity = 1;document.getElementById('_fb_bvegfwflavduxyliamjg_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_bvegfwflavduxyliamjg_ind_1').style.textDecoration = 'none';document.getElementById('_fs_bvegfwflavduxyliamjg_ind_1').style.opacity = 0;document.getElementById('_fb_bvegfwflavduxyliamjg_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"28.665957066191872%\" y=\"40\" height=\"20\" width=\"0.03212000612482413%\" onmouseover=\"document.getElementById('_tp_bvegfwflavduxyliamjg_ind_20').style.textDecoration = 'underline';document.getElementById('_fs_bvegfwflavduxyliamjg_ind_20').style.opacity = 1;document.getElementById('_fb_bvegfwflavduxyliamjg_ind_20').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_bvegfwflavduxyliamjg_ind_20').style.textDecoration = 'none';document.getElementById('_fs_bvegfwflavduxyliamjg_ind_20').style.opacity = 0;document.getElementById('_fb_bvegfwflavduxyliamjg_ind_20').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"31.254492462664754%\" width=\"18.386481666656127%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"31.254492462664754%\" x2=\"36.909648288308816%\" y1=\"60\" y2=\"60\" id=\"_fb_bvegfwflavduxyliamjg_ind_11\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"34.082070375486786%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_bvegfwflavduxyliamjg_ind_11\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.097</text><svg x=\"31.254492462664754%\" y=\"40\" height=\"20\" width=\"5.655155825644062%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeful</text> </svg></svg><line x1=\"36.909648288308816%\" x2=\"41.56589065633448%\" y1=\"60\" y2=\"60\" id=\"_fb_bvegfwflavduxyliamjg_ind_7\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"39.237769472321645%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_bvegfwflavduxyliamjg_ind_7\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.08</text><svg x=\"36.909648288308816%\" y=\"40\" height=\"20\" width=\"4.656242368025666%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeless</text> </svg></svg><line x1=\"41.56589065633448%\" x2=\"44.195039682650865%\" y1=\"60\" y2=\"60\" id=\"_fb_bvegfwflavduxyliamjg_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"42.88046516949267%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_bvegfwflavduxyliamjg_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.045</text><svg x=\"41.56589065633448%\" y=\"40\" height=\"20\" width=\"2.6291490263163837%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feeling</text> </svg></svg><line x1=\"44.195039682650865%\" x2=\"45.79632536739547%\" y1=\"60\" y2=\"60\" id=\"_fb_bvegfwflavduxyliamjg_ind_21\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"44.99568252502317%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_bvegfwflavduxyliamjg_ind_21\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.027</text><svg x=\"44.195039682650865%\" y=\"40\" height=\"20\" width=\"1.601285684744603%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">awake</text> </svg></svg><line x1=\"45.79632536739547%\" x2=\"47.04416446566764%\" y1=\"60\" y2=\"60\" id=\"_fb_bvegfwflavduxyliamjg_ind_18\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"46.42024491653156%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_bvegfwflavduxyliamjg_ind_18\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.021</text><svg x=\"45.79632536739547%\" y=\"40\" height=\"20\" width=\"1.2478390982721734%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">cares</text> </svg></svg><line x1=\"47.04416446566764%\" x2=\"47.97361008784759%\" y1=\"60\" y2=\"60\" id=\"_fb_bvegfwflavduxyliamjg_ind_6\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"47.50888727675762%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_bvegfwflavduxyliamjg_ind_6\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.016</text><svg x=\"47.04416446566764%\" y=\"40\" height=\"20\" width=\"0.9294456221799479%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><line x1=\"47.97361008784759%\" x2=\"48.46957531144558%\" y1=\"60\" y2=\"60\" id=\"_fb_bvegfwflavduxyliamjg_ind_16\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"48.221592699646585%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_bvegfwflavduxyliamjg_ind_16\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.009</text><svg x=\"47.97361008784759%\" y=\"40\" height=\"20\" width=\"0.49596522359799167%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">someone</text> </svg></svg><line x1=\"48.46957531144558%\" x2=\"48.94410313096039%\" y1=\"60\" y2=\"60\" id=\"_fb_bvegfwflavduxyliamjg_ind_12\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"48.70683922120298%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_bvegfwflavduxyliamjg_ind_12\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.008</text><svg x=\"48.46957531144558%\" y=\"40\" height=\"20\" width=\"0.4745278195148117%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">just</text> </svg></svg><line x1=\"48.94410313096039%\" x2=\"49.236007971436436%\" y1=\"60\" y2=\"60\" id=\"_fb_bvegfwflavduxyliamjg_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"49.09005555119842%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_bvegfwflavduxyliamjg_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.005</text><svg x=\"48.94410313096039%\" y=\"40\" height=\"20\" width=\"0.29190484047604315%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">can</text> </svg></svg><line x1=\"49.236007971436436%\" x2=\"49.4554553211461%\" y1=\"60\" y2=\"60\" id=\"_fb_bvegfwflavduxyliamjg_ind_19\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"49.34573164629127%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_bvegfwflavduxyliamjg_ind_19\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.004</text><svg x=\"49.236007971436436%\" y=\"40\" height=\"20\" width=\"0.21944734970966095%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">and</text> </svg></svg><line x1=\"49.4554553211461%\" x2=\"49.563885054289024%\" y1=\"60\" y2=\"60\" id=\"_fb_bvegfwflavduxyliamjg_ind_17\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"49.50967018771756%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_bvegfwflavduxyliamjg_ind_17\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.002</text><svg x=\"49.4554553211461%\" y=\"40\" height=\"20\" width=\"0.10842973314292692%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">who</text> </svg></svg><line x1=\"49.563885054289024%\" x2=\"49.63935059790133%\" y1=\"60\" y2=\"60\" id=\"_fb_bvegfwflavduxyliamjg_ind_14\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"49.60161782609518%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_bvegfwflavduxyliamjg_ind_14\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.001</text><svg x=\"49.563885054289024%\" y=\"40\" height=\"20\" width=\"0.07546554361230307%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">being</text> </svg></svg><line x1=\"49.63935059790133%\" x2=\"49.640271657198916%\" y1=\"60\" y2=\"60\" id=\"_fb_bvegfwflavduxyliamjg_ind_22\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"49.63981112755012%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_bvegfwflavduxyliamjg_ind_22\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"49.63935059790133%\" y=\"40\" height=\"20\" width=\"0.0009210592975890108%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><line x1=\"49.640271657198916%\" x2=\"49.64097412932089%\" y1=\"60\" y2=\"60\" id=\"_fb_bvegfwflavduxyliamjg_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"49.6406228932599%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_bvegfwflavduxyliamjg_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"49.640271657198916%\" y=\"40\" height=\"20\" width=\"0.0007024721219721641%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"36.909648288308816%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"36.909648288308816%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"36.909648288308816%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"36.909648288308816%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"36.909648288308816%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"36.909648288308816%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"36.909648288308816%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"36.909648288308816%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"41.56589065633448%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"41.56589065633448%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"41.56589065633448%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"41.56589065633448%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"41.56589065633448%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"41.56589065633448%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"41.56589065633448%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"41.56589065633448%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"44.195039682650865%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"44.195039682650865%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"44.195039682650865%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"44.195039682650865%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"44.195039682650865%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"44.195039682650865%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"44.195039682650865%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"44.195039682650865%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"45.79632536739547%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"45.79632536739547%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"45.79632536739547%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"45.79632536739547%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"45.79632536739547%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"45.79632536739547%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"45.79632536739547%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"45.79632536739547%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"47.04416446566764%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"47.04416446566764%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"47.04416446566764%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"47.04416446566764%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"47.04416446566764%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"47.04416446566764%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"47.04416446566764%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"47.04416446566764%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"47.97361008784759%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"47.97361008784759%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"47.97361008784759%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"47.97361008784759%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"47.97361008784759%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"47.97361008784759%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"47.97361008784759%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"47.97361008784759%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"48.46957531144558%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"48.46957531144558%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"48.46957531144558%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"48.46957531144558%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"48.46957531144558%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"48.46957531144558%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"48.46957531144558%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"48.46957531144558%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"48.94410313096039%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"48.94410313096039%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"48.94410313096039%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"48.94410313096039%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"48.94410313096039%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"48.94410313096039%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"48.94410313096039%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"48.94410313096039%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"49.236007971436436%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"49.236007971436436%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"49.236007971436436%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"49.236007971436436%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"49.236007971436436%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"49.236007971436436%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"49.236007971436436%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"49.236007971436436%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"49.4554553211461%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"49.4554553211461%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"49.4554553211461%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"49.4554553211461%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"49.4554553211461%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"49.4554553211461%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"49.4554553211461%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"49.4554553211461%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"49.563885054289024%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"49.563885054289024%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"49.563885054289024%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"49.563885054289024%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"49.563885054289024%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"49.563885054289024%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"49.563885054289024%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"49.563885054289024%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"49.63935059790133%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"49.63935059790133%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"49.63935059790133%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"49.63935059790133%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"49.63935059790133%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"49.63935059790133%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"49.63935059790133%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"49.63935059790133%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"49.640271657198916%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"49.640271657198916%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"49.640271657198916%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"49.640271657198916%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"49.640271657198916%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"49.640271657198916%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"49.640271657198916%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"49.640271657198916%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"31.254492462664754%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"49.64097412932089%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"36.909648288308816%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"31.254492462664754%\" y=\"40\" height=\"20\" width=\"5.655155825644062%\" onmouseover=\"document.getElementById('_tp_bvegfwflavduxyliamjg_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_bvegfwflavduxyliamjg_ind_11').style.opacity = 1;document.getElementById('_fb_bvegfwflavduxyliamjg_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_bvegfwflavduxyliamjg_ind_11').style.textDecoration = 'none';document.getElementById('_fs_bvegfwflavduxyliamjg_ind_11').style.opacity = 0;document.getElementById('_fb_bvegfwflavduxyliamjg_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"41.56589065633448%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"36.909648288308816%\" y=\"40\" height=\"20\" width=\"4.656242368025666%\" onmouseover=\"document.getElementById('_tp_bvegfwflavduxyliamjg_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_bvegfwflavduxyliamjg_ind_7').style.opacity = 1;document.getElementById('_fb_bvegfwflavduxyliamjg_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_bvegfwflavduxyliamjg_ind_7').style.textDecoration = 'none';document.getElementById('_fs_bvegfwflavduxyliamjg_ind_7').style.opacity = 0;document.getElementById('_fb_bvegfwflavduxyliamjg_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"44.195039682650865%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"41.56589065633448%\" y=\"40\" height=\"20\" width=\"2.6291490263163837%\" onmouseover=\"document.getElementById('_tp_bvegfwflavduxyliamjg_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_bvegfwflavduxyliamjg_ind_5').style.opacity = 1;document.getElementById('_fb_bvegfwflavduxyliamjg_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_bvegfwflavduxyliamjg_ind_5').style.textDecoration = 'none';document.getElementById('_fs_bvegfwflavduxyliamjg_ind_5').style.opacity = 0;document.getElementById('_fb_bvegfwflavduxyliamjg_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"45.79632536739547%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"44.195039682650865%\" y=\"40\" height=\"20\" width=\"1.601285684744603%\" onmouseover=\"document.getElementById('_tp_bvegfwflavduxyliamjg_ind_21').style.textDecoration = 'underline';document.getElementById('_fs_bvegfwflavduxyliamjg_ind_21').style.opacity = 1;document.getElementById('_fb_bvegfwflavduxyliamjg_ind_21').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_bvegfwflavduxyliamjg_ind_21').style.textDecoration = 'none';document.getElementById('_fs_bvegfwflavduxyliamjg_ind_21').style.opacity = 0;document.getElementById('_fb_bvegfwflavduxyliamjg_ind_21').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"47.04416446566764%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"45.79632536739547%\" y=\"40\" height=\"20\" width=\"1.2478390982721734%\" onmouseover=\"document.getElementById('_tp_bvegfwflavduxyliamjg_ind_18').style.textDecoration = 'underline';document.getElementById('_fs_bvegfwflavduxyliamjg_ind_18').style.opacity = 1;document.getElementById('_fb_bvegfwflavduxyliamjg_ind_18').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_bvegfwflavduxyliamjg_ind_18').style.textDecoration = 'none';document.getElementById('_fs_bvegfwflavduxyliamjg_ind_18').style.opacity = 0;document.getElementById('_fb_bvegfwflavduxyliamjg_ind_18').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"47.97361008784759%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"47.04416446566764%\" y=\"40\" height=\"20\" width=\"0.9294456221799479%\" onmouseover=\"document.getElementById('_tp_bvegfwflavduxyliamjg_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_bvegfwflavduxyliamjg_ind_6').style.opacity = 1;document.getElementById('_fb_bvegfwflavduxyliamjg_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_bvegfwflavduxyliamjg_ind_6').style.textDecoration = 'none';document.getElementById('_fs_bvegfwflavduxyliamjg_ind_6').style.opacity = 0;document.getElementById('_fb_bvegfwflavduxyliamjg_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"48.46957531144558%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"47.97361008784759%\" y=\"40\" height=\"20\" width=\"0.49596522359799167%\" onmouseover=\"document.getElementById('_tp_bvegfwflavduxyliamjg_ind_16').style.textDecoration = 'underline';document.getElementById('_fs_bvegfwflavduxyliamjg_ind_16').style.opacity = 1;document.getElementById('_fb_bvegfwflavduxyliamjg_ind_16').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_bvegfwflavduxyliamjg_ind_16').style.textDecoration = 'none';document.getElementById('_fs_bvegfwflavduxyliamjg_ind_16').style.opacity = 0;document.getElementById('_fb_bvegfwflavduxyliamjg_ind_16').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"48.94410313096039%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"48.46957531144558%\" y=\"40\" height=\"20\" width=\"0.4745278195148117%\" onmouseover=\"document.getElementById('_tp_bvegfwflavduxyliamjg_ind_12').style.textDecoration = 'underline';document.getElementById('_fs_bvegfwflavduxyliamjg_ind_12').style.opacity = 1;document.getElementById('_fb_bvegfwflavduxyliamjg_ind_12').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_bvegfwflavduxyliamjg_ind_12').style.textDecoration = 'none';document.getElementById('_fs_bvegfwflavduxyliamjg_ind_12').style.opacity = 0;document.getElementById('_fb_bvegfwflavduxyliamjg_ind_12').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"49.236007971436436%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"48.94410313096039%\" y=\"40\" height=\"20\" width=\"0.29190484047604315%\" onmouseover=\"document.getElementById('_tp_bvegfwflavduxyliamjg_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_bvegfwflavduxyliamjg_ind_2').style.opacity = 1;document.getElementById('_fb_bvegfwflavduxyliamjg_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_bvegfwflavduxyliamjg_ind_2').style.textDecoration = 'none';document.getElementById('_fs_bvegfwflavduxyliamjg_ind_2').style.opacity = 0;document.getElementById('_fb_bvegfwflavduxyliamjg_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"49.4554553211461%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"49.236007971436436%\" y=\"40\" height=\"20\" width=\"0.21944734970966095%\" onmouseover=\"document.getElementById('_tp_bvegfwflavduxyliamjg_ind_19').style.textDecoration = 'underline';document.getElementById('_fs_bvegfwflavduxyliamjg_ind_19').style.opacity = 1;document.getElementById('_fb_bvegfwflavduxyliamjg_ind_19').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_bvegfwflavduxyliamjg_ind_19').style.textDecoration = 'none';document.getElementById('_fs_bvegfwflavduxyliamjg_ind_19').style.opacity = 0;document.getElementById('_fb_bvegfwflavduxyliamjg_ind_19').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"49.563885054289024%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"49.4554553211461%\" y=\"40\" height=\"20\" width=\"0.10842973314292692%\" onmouseover=\"document.getElementById('_tp_bvegfwflavduxyliamjg_ind_17').style.textDecoration = 'underline';document.getElementById('_fs_bvegfwflavduxyliamjg_ind_17').style.opacity = 1;document.getElementById('_fb_bvegfwflavduxyliamjg_ind_17').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_bvegfwflavduxyliamjg_ind_17').style.textDecoration = 'none';document.getElementById('_fs_bvegfwflavduxyliamjg_ind_17').style.opacity = 0;document.getElementById('_fb_bvegfwflavduxyliamjg_ind_17').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"49.63935059790133%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"49.563885054289024%\" y=\"40\" height=\"20\" width=\"0.07546554361230307%\" onmouseover=\"document.getElementById('_tp_bvegfwflavduxyliamjg_ind_14').style.textDecoration = 'underline';document.getElementById('_fs_bvegfwflavduxyliamjg_ind_14').style.opacity = 1;document.getElementById('_fb_bvegfwflavduxyliamjg_ind_14').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_bvegfwflavduxyliamjg_ind_14').style.textDecoration = 'none';document.getElementById('_fs_bvegfwflavduxyliamjg_ind_14').style.opacity = 0;document.getElementById('_fb_bvegfwflavduxyliamjg_ind_14').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"49.640271657198916%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"49.63935059790133%\" y=\"40\" height=\"20\" width=\"0.0009210592975890108%\" onmouseover=\"document.getElementById('_tp_bvegfwflavduxyliamjg_ind_22').style.textDecoration = 'underline';document.getElementById('_fs_bvegfwflavduxyliamjg_ind_22').style.opacity = 1;document.getElementById('_fb_bvegfwflavduxyliamjg_ind_22').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_bvegfwflavduxyliamjg_ind_22').style.textDecoration = 'none';document.getElementById('_fs_bvegfwflavduxyliamjg_ind_22').style.opacity = 0;document.getElementById('_fb_bvegfwflavduxyliamjg_ind_22').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"49.640271657198916%\" y=\"40\" height=\"20\" width=\"0.0007024721219721641%\" onmouseover=\"document.getElementById('_tp_bvegfwflavduxyliamjg_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_bvegfwflavduxyliamjg_ind_0').style.opacity = 1;document.getElementById('_fb_bvegfwflavduxyliamjg_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_bvegfwflavduxyliamjg_ind_0').style.textDecoration = 'none';document.getElementById('_fs_bvegfwflavduxyliamjg_ind_0').style.opacity = 0;document.getElementById('_fb_bvegfwflavduxyliamjg_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_bvegfwflavduxyliamjg_ind_0'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_bvegfwflavduxyliamjg_ind_0').style.opacity = 1; document.getElementById('_fs_bvegfwflavduxyliamjg_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_bvegfwflavduxyliamjg_ind_0').style.opacity = 0; document.getElementById('_fs_bvegfwflavduxyliamjg_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.002</div\n",
|
|
" ><div id='_tp_bvegfwflavduxyliamjg_ind_1'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_bvegfwflavduxyliamjg_ind_1').style.opacity = 1; document.getElementById('_fs_bvegfwflavduxyliamjg_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_bvegfwflavduxyliamjg_ind_1').style.opacity = 0; document.getElementById('_fs_bvegfwflavduxyliamjg_ind_1').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.005</div\n",
|
|
" ><div id='_tp_bvegfwflavduxyliamjg_ind_2'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_bvegfwflavduxyliamjg_ind_2').style.opacity = 1; document.getElementById('_fs_bvegfwflavduxyliamjg_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_bvegfwflavduxyliamjg_ind_2').style.opacity = 0; document.getElementById('_fs_bvegfwflavduxyliamjg_ind_2').style.opacity = 0;\"\n",
|
|
" >can </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.003</div\n",
|
|
" ><div id='_tp_bvegfwflavduxyliamjg_ind_3'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_bvegfwflavduxyliamjg_ind_3').style.opacity = 1; document.getElementById('_fs_bvegfwflavduxyliamjg_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_bvegfwflavduxyliamjg_ind_3').style.opacity = 0; document.getElementById('_fs_bvegfwflavduxyliamjg_ind_3').style.opacity = 0;\"\n",
|
|
" >go </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.005</div\n",
|
|
" ><div id='_tp_bvegfwflavduxyliamjg_ind_4'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_bvegfwflavduxyliamjg_ind_4').style.opacity = 1; document.getElementById('_fs_bvegfwflavduxyliamjg_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_bvegfwflavduxyliamjg_ind_4').style.opacity = 0; document.getElementById('_fs_bvegfwflavduxyliamjg_ind_4').style.opacity = 0;\"\n",
|
|
" >from </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.045</div\n",
|
|
" ><div id='_tp_bvegfwflavduxyliamjg_ind_5'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.04618736383442258); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_bvegfwflavduxyliamjg_ind_5').style.opacity = 1; document.getElementById('_fs_bvegfwflavduxyliamjg_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_bvegfwflavduxyliamjg_ind_5').style.opacity = 0; document.getElementById('_fs_bvegfwflavduxyliamjg_ind_5').style.opacity = 0;\"\n",
|
|
" >feeling </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.016</div\n",
|
|
" ><div id='_tp_bvegfwflavduxyliamjg_ind_6'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_bvegfwflavduxyliamjg_ind_6').style.opacity = 1; document.getElementById('_fs_bvegfwflavduxyliamjg_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_bvegfwflavduxyliamjg_ind_6').style.opacity = 0; document.getElementById('_fs_bvegfwflavduxyliamjg_ind_6').style.opacity = 0;\"\n",
|
|
" >so </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.08</div\n",
|
|
" ><div id='_tp_bvegfwflavduxyliamjg_ind_7'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.08560110913052085); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_bvegfwflavduxyliamjg_ind_7').style.opacity = 1; document.getElementById('_fs_bvegfwflavduxyliamjg_ind_7').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_bvegfwflavduxyliamjg_ind_7').style.opacity = 0; document.getElementById('_fs_bvegfwflavduxyliamjg_ind_7').style.opacity = 0;\"\n",
|
|
" >hopeless </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.005</div\n",
|
|
" ><div id='_tp_bvegfwflavduxyliamjg_ind_8'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_bvegfwflavduxyliamjg_ind_8').style.opacity = 1; document.getElementById('_fs_bvegfwflavduxyliamjg_ind_8').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_bvegfwflavduxyliamjg_ind_8').style.opacity = 0; document.getElementById('_fs_bvegfwflavduxyliamjg_ind_8').style.opacity = 0;\"\n",
|
|
" >to </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.004</div\n",
|
|
" ><div id='_tp_bvegfwflavduxyliamjg_ind_9'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_bvegfwflavduxyliamjg_ind_9').style.opacity = 1; document.getElementById('_fs_bvegfwflavduxyliamjg_ind_9').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_bvegfwflavduxyliamjg_ind_9').style.opacity = 0; document.getElementById('_fs_bvegfwflavduxyliamjg_ind_9').style.opacity = 0;\"\n",
|
|
" >so </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.015</div\n",
|
|
" ><div id='_tp_bvegfwflavduxyliamjg_ind_10'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.014656367597544035); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_bvegfwflavduxyliamjg_ind_10').style.opacity = 1; document.getElementById('_fs_bvegfwflavduxyliamjg_ind_10').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_bvegfwflavduxyliamjg_ind_10').style.opacity = 0; document.getElementById('_fs_bvegfwflavduxyliamjg_ind_10').style.opacity = 0;\"\n",
|
|
" >damned </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.097</div\n",
|
|
" ><div id='_tp_bvegfwflavduxyliamjg_ind_11'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.10924935630817977); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_bvegfwflavduxyliamjg_ind_11').style.opacity = 1; document.getElementById('_fs_bvegfwflavduxyliamjg_ind_11').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_bvegfwflavduxyliamjg_ind_11').style.opacity = 0; document.getElementById('_fs_bvegfwflavduxyliamjg_ind_11').style.opacity = 0;\"\n",
|
|
" >hopeful </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.008</div\n",
|
|
" ><div id='_tp_bvegfwflavduxyliamjg_ind_12'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_bvegfwflavduxyliamjg_ind_12').style.opacity = 1; document.getElementById('_fs_bvegfwflavduxyliamjg_ind_12').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_bvegfwflavduxyliamjg_ind_12').style.opacity = 0; document.getElementById('_fs_bvegfwflavduxyliamjg_ind_12').style.opacity = 0;\"\n",
|
|
" >just </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.003</div\n",
|
|
" ><div id='_tp_bvegfwflavduxyliamjg_ind_13'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_bvegfwflavduxyliamjg_ind_13').style.opacity = 1; document.getElementById('_fs_bvegfwflavduxyliamjg_ind_13').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_bvegfwflavduxyliamjg_ind_13').style.opacity = 0; document.getElementById('_fs_bvegfwflavduxyliamjg_ind_13').style.opacity = 0;\"\n",
|
|
" >from </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.001</div\n",
|
|
" ><div id='_tp_bvegfwflavduxyliamjg_ind_14'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_bvegfwflavduxyliamjg_ind_14').style.opacity = 1; document.getElementById('_fs_bvegfwflavduxyliamjg_ind_14').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_bvegfwflavduxyliamjg_ind_14').style.opacity = 0; document.getElementById('_fs_bvegfwflavduxyliamjg_ind_14').style.opacity = 0;\"\n",
|
|
" >being </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.007</div\n",
|
|
" ><div id='_tp_bvegfwflavduxyliamjg_ind_15'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_bvegfwflavduxyliamjg_ind_15').style.opacity = 1; document.getElementById('_fs_bvegfwflavduxyliamjg_ind_15').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_bvegfwflavduxyliamjg_ind_15').style.opacity = 0; document.getElementById('_fs_bvegfwflavduxyliamjg_ind_15').style.opacity = 0;\"\n",
|
|
" >around </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.009</div\n",
|
|
" ><div id='_tp_bvegfwflavduxyliamjg_ind_16'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_bvegfwflavduxyliamjg_ind_16').style.opacity = 1; document.getElementById('_fs_bvegfwflavduxyliamjg_ind_16').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_bvegfwflavduxyliamjg_ind_16').style.opacity = 0; document.getElementById('_fs_bvegfwflavduxyliamjg_ind_16').style.opacity = 0;\"\n",
|
|
" >someone </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.002</div\n",
|
|
" ><div id='_tp_bvegfwflavduxyliamjg_ind_17'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_bvegfwflavduxyliamjg_ind_17').style.opacity = 1; document.getElementById('_fs_bvegfwflavduxyliamjg_ind_17').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_bvegfwflavduxyliamjg_ind_17').style.opacity = 0; document.getElementById('_fs_bvegfwflavduxyliamjg_ind_17').style.opacity = 0;\"\n",
|
|
" >who </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.021</div\n",
|
|
" ><div id='_tp_bvegfwflavduxyliamjg_ind_18'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.022539116656763607); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_bvegfwflavduxyliamjg_ind_18').style.opacity = 1; document.getElementById('_fs_bvegfwflavduxyliamjg_ind_18').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_bvegfwflavduxyliamjg_ind_18').style.opacity = 0; document.getElementById('_fs_bvegfwflavduxyliamjg_ind_18').style.opacity = 0;\"\n",
|
|
" >cares </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.004</div\n",
|
|
" ><div id='_tp_bvegfwflavduxyliamjg_ind_19'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_bvegfwflavduxyliamjg_ind_19').style.opacity = 1; document.getElementById('_fs_bvegfwflavduxyliamjg_ind_19').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_bvegfwflavduxyliamjg_ind_19').style.opacity = 0; document.getElementById('_fs_bvegfwflavduxyliamjg_ind_19').style.opacity = 0;\"\n",
|
|
" >and </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.001</div\n",
|
|
" ><div id='_tp_bvegfwflavduxyliamjg_ind_20'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_bvegfwflavduxyliamjg_ind_20').style.opacity = 1; document.getElementById('_fs_bvegfwflavduxyliamjg_ind_20').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_bvegfwflavduxyliamjg_ind_20').style.opacity = 0; document.getElementById('_fs_bvegfwflavduxyliamjg_ind_20').style.opacity = 0;\"\n",
|
|
" >is </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.027</div\n",
|
|
" ><div id='_tp_bvegfwflavduxyliamjg_ind_21'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03042186571598325); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_bvegfwflavduxyliamjg_ind_21').style.opacity = 1; document.getElementById('_fs_bvegfwflavduxyliamjg_ind_21').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_bvegfwflavduxyliamjg_ind_21').style.opacity = 0; document.getElementById('_fs_bvegfwflavduxyliamjg_ind_21').style.opacity = 0;\"\n",
|
|
" >awake</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_bvegfwflavduxyliamjg_ind_22'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_bvegfwflavduxyliamjg_ind_22').style.opacity = 1; document.getElementById('_fs_bvegfwflavduxyliamjg_ind_22').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_bvegfwflavduxyliamjg_ind_22').style.opacity = 0; document.getElementById('_fs_bvegfwflavduxyliamjg_ind_22').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_mqwalcomvemcxolagrxb_output_3_zoom' style='display: none;'><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"41.65656757170164%\" y1=\"33\" x2=\"41.65656757170164%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"41.65656757170164%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.1</text><line x1=\"18.510042895135395%\" y1=\"33\" x2=\"18.510042895135395%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"18.510042895135395%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0</text><line x1=\"64.80309224826789%\" y1=\"33\" x2=\"64.80309224826789%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"64.80309224826789%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.2</text><line x1=\"87.94961692483416%\" y1=\"33\" x2=\"87.94961692483416%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"87.94961692483416%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.3</text><line x1=\"81.3828280926107%\" y1=\"33\" x2=\"81.3828280926107%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"81.3828280926107%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.271629</text><text x=\"81.3828280926107%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.271629</text><text x=\"81.3828280926107%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"18.617169592736825%\" y1=\"33\" x2=\"18.617169592736825%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"18.617169592736825%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.00046282</text><text x=\"18.617169592736825%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.00046282</text><text x=\"18.617169592736825%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">anger</tspan>(inputs)</text><rect x=\"8.332849977313293%\" width=\"10.284319615423536%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"15.224086859155241%\" x2=\"18.617169592736825%\" y1=\"60\" y2=\"60\" id=\"_fb_dekntqnofgdqyslbtpyr_ind_10\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"16.920628225946032%\" y=\"71\" font-size=\"12px\" id=\"_fs_dekntqnofgdqyslbtpyr_ind_10\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.015</text><svg x=\"15.224086859155241%\" y=\"40\" height=\"20\" width=\"3.3930827335815845%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">damned</text> </svg></svg><line x1=\"13.531232254035254%\" x2=\"15.224086859155241%\" y1=\"60\" y2=\"60\" id=\"_fb_dekntqnofgdqyslbtpyr_ind_15\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"14.377659556595248%\" y=\"71\" font-size=\"12px\" id=\"_fs_dekntqnofgdqyslbtpyr_ind_15\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.007</text><svg x=\"13.531232254035254%\" y=\"40\" height=\"20\" width=\"1.6928546051199866%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">around</text> </svg></svg><line x1=\"12.34375071475296%\" x2=\"13.531232254035254%\" y1=\"60\" y2=\"60\" id=\"_fb_dekntqnofgdqyslbtpyr_ind_4\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"12.937491484394108%\" y=\"71\" font-size=\"12px\" id=\"_fs_dekntqnofgdqyslbtpyr_ind_4\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.005</text><svg x=\"12.34375071475296%\" y=\"40\" height=\"20\" width=\"1.1874815392822935%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><line x1=\"11.241907572260141%\" x2=\"12.34375071475296%\" y1=\"60\" y2=\"60\" id=\"_fb_dekntqnofgdqyslbtpyr_ind_8\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"11.792829143506552%\" y=\"71\" font-size=\"12px\" id=\"_fs_dekntqnofgdqyslbtpyr_ind_8\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.005</text><svg x=\"11.241907572260141%\" y=\"40\" height=\"20\" width=\"1.10184314249282%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><line x1=\"10.333865013355753%\" x2=\"11.241907572260141%\" y1=\"60\" y2=\"60\" id=\"_fb_dekntqnofgdqyslbtpyr_ind_9\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"10.787886292807947%\" y=\"71\" font-size=\"12px\" id=\"_fs_dekntqnofgdqyslbtpyr_ind_9\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.004</text><svg x=\"10.333865013355753%\" y=\"40\" height=\"20\" width=\"0.9080425589043877%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><line x1=\"9.534257255166624%\" x2=\"10.333865013355753%\" y1=\"60\" y2=\"60\" id=\"_fb_dekntqnofgdqyslbtpyr_ind_13\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"9.934061134261189%\" y=\"71\" font-size=\"12px\" id=\"_fs_dekntqnofgdqyslbtpyr_ind_13\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.003</text><svg x=\"9.534257255166624%\" y=\"40\" height=\"20\" width=\"0.7996077581891292%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><line x1=\"8.92698667086116%\" x2=\"9.534257255166624%\" y1=\"60\" y2=\"60\" id=\"_fb_dekntqnofgdqyslbtpyr_ind_3\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"9.230621963013892%\" y=\"71\" font-size=\"12px\" id=\"_fs_dekntqnofgdqyslbtpyr_ind_3\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.003</text><svg x=\"8.92698667086116%\" y=\"40\" height=\"20\" width=\"0.6072705843054642%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">go</text> </svg></svg><line x1=\"8.460463611450642%\" x2=\"8.92698667086116%\" y1=\"60\" y2=\"60\" id=\"_fb_dekntqnofgdqyslbtpyr_ind_1\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.693725141155902%\" y=\"71\" font-size=\"12px\" id=\"_fs_dekntqnofgdqyslbtpyr_ind_1\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.002</text><svg x=\"8.460463611450642%\" y=\"40\" height=\"20\" width=\"0.46652305941051786%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"8.332849977313293%\" x2=\"8.460463611450642%\" y1=\"60\" y2=\"60\" id=\"_fb_dekntqnofgdqyslbtpyr_ind_20\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.396656794381968%\" y=\"71\" font-size=\"12px\" id=\"_fs_dekntqnofgdqyslbtpyr_ind_20\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.001</text><svg x=\"8.332849977313293%\" y=\"40\" height=\"20\" width=\"0.12761363413734905%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">is</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"15.224086859155241%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"15.224086859155241%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"15.224086859155241%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"15.224086859155241%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"15.224086859155241%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"15.224086859155241%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"15.224086859155241%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"15.224086859155241%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"13.531232254035254%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"13.531232254035254%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"13.531232254035254%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"13.531232254035254%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"13.531232254035254%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"13.531232254035254%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"13.531232254035254%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"13.531232254035254%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"12.34375071475296%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"12.34375071475296%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"12.34375071475296%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"12.34375071475296%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"12.34375071475296%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"12.34375071475296%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"12.34375071475296%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"12.34375071475296%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"11.241907572260141%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"11.241907572260141%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"11.241907572260141%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"11.241907572260141%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"11.241907572260141%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"11.241907572260141%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"11.241907572260141%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"11.241907572260141%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"10.333865013355753%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"10.333865013355753%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"10.333865013355753%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"10.333865013355753%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"10.333865013355753%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"10.333865013355753%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"10.333865013355753%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"10.333865013355753%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"9.534257255166624%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"9.534257255166624%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"9.534257255166624%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"9.534257255166624%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"9.534257255166624%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"9.534257255166624%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"9.534257255166624%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"9.534257255166624%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.92698667086116%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.92698667086116%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.92698667086116%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.92698667086116%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.92698667086116%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.92698667086116%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.92698667086116%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.92698667086116%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.460463611450642%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.460463611450642%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.460463611450642%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.460463611450642%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.460463611450642%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.460463611450642%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.460463611450642%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.460463611450642%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"18.617169592736825%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.332849977313293%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"18.617169592736825%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"15.224086859155241%\" y=\"40\" height=\"20\" width=\"3.3930827335815845%\" onmouseover=\"document.getElementById('_tp_dekntqnofgdqyslbtpyr_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_10').style.opacity = 1;document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dekntqnofgdqyslbtpyr_ind_10').style.textDecoration = 'none';document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_10').style.opacity = 0;document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"15.224086859155241%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"13.531232254035254%\" y=\"40\" height=\"20\" width=\"1.6928546051199866%\" onmouseover=\"document.getElementById('_tp_dekntqnofgdqyslbtpyr_ind_15').style.textDecoration = 'underline';document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_15').style.opacity = 1;document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_15').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dekntqnofgdqyslbtpyr_ind_15').style.textDecoration = 'none';document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_15').style.opacity = 0;document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_15').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"13.531232254035254%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"12.34375071475296%\" y=\"40\" height=\"20\" width=\"1.1874815392822935%\" onmouseover=\"document.getElementById('_tp_dekntqnofgdqyslbtpyr_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_4').style.opacity = 1;document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dekntqnofgdqyslbtpyr_ind_4').style.textDecoration = 'none';document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_4').style.opacity = 0;document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"12.34375071475296%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"11.241907572260141%\" y=\"40\" height=\"20\" width=\"1.10184314249282%\" onmouseover=\"document.getElementById('_tp_dekntqnofgdqyslbtpyr_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_8').style.opacity = 1;document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dekntqnofgdqyslbtpyr_ind_8').style.textDecoration = 'none';document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_8').style.opacity = 0;document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"11.241907572260141%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"10.333865013355753%\" y=\"40\" height=\"20\" width=\"0.9080425589043877%\" onmouseover=\"document.getElementById('_tp_dekntqnofgdqyslbtpyr_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_9').style.opacity = 1;document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dekntqnofgdqyslbtpyr_ind_9').style.textDecoration = 'none';document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_9').style.opacity = 0;document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"10.333865013355753%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"9.534257255166624%\" y=\"40\" height=\"20\" width=\"0.7996077581891292%\" onmouseover=\"document.getElementById('_tp_dekntqnofgdqyslbtpyr_ind_13').style.textDecoration = 'underline';document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_13').style.opacity = 1;document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_13').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dekntqnofgdqyslbtpyr_ind_13').style.textDecoration = 'none';document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_13').style.opacity = 0;document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_13').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"9.534257255166624%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.92698667086116%\" y=\"40\" height=\"20\" width=\"0.6072705843054642%\" onmouseover=\"document.getElementById('_tp_dekntqnofgdqyslbtpyr_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_3').style.opacity = 1;document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dekntqnofgdqyslbtpyr_ind_3').style.textDecoration = 'none';document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_3').style.opacity = 0;document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"8.92698667086116%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.460463611450642%\" y=\"40\" height=\"20\" width=\"0.46652305941051786%\" onmouseover=\"document.getElementById('_tp_dekntqnofgdqyslbtpyr_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_1').style.opacity = 1;document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dekntqnofgdqyslbtpyr_ind_1').style.textDecoration = 'none';document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_1').style.opacity = 0;document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"8.332849977313293%\" y=\"40\" height=\"20\" width=\"0.12761363413734905%\" onmouseover=\"document.getElementById('_tp_dekntqnofgdqyslbtpyr_ind_20').style.textDecoration = 'underline';document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_20').style.opacity = 1;document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_20').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dekntqnofgdqyslbtpyr_ind_20').style.textDecoration = 'none';document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_20').style.opacity = 0;document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_20').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"18.617169592736825%\" width=\"73.0499781152974%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"18.617169592736825%\" x2=\"41.08525330725564%\" y1=\"60\" y2=\"60\" id=\"_fb_dekntqnofgdqyslbtpyr_ind_11\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"29.851211449996235%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dekntqnofgdqyslbtpyr_ind_11\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.097</text><svg x=\"18.617169592736825%\" y=\"40\" height=\"20\" width=\"22.468083714518816%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeful</text> </svg></svg><line x1=\"41.08525330725564%\" x2=\"59.584627426265904%\" y1=\"60\" y2=\"60\" id=\"_fb_dekntqnofgdqyslbtpyr_ind_7\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"50.334940366760776%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dekntqnofgdqyslbtpyr_ind_7\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.08</text><svg x=\"41.08525330725564%\" y=\"40\" height=\"20\" width=\"18.499374119010263%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeless</text> </svg></svg><line x1=\"59.584627426265904%\" x2=\"70.03030606757804%\" y1=\"60\" y2=\"60\" id=\"_fb_dekntqnofgdqyslbtpyr_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"64.80746674692197%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dekntqnofgdqyslbtpyr_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.045</text><svg x=\"59.584627426265904%\" y=\"40\" height=\"20\" width=\"10.445678641312135%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feeling</text> </svg></svg><line x1=\"70.03030606757804%\" x2=\"76.39225645850382%\" y1=\"60\" y2=\"60\" id=\"_fb_dekntqnofgdqyslbtpyr_ind_21\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"73.21128126304093%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dekntqnofgdqyslbtpyr_ind_21\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.027</text><svg x=\"70.03030606757804%\" y=\"40\" height=\"20\" width=\"6.361950390925784%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">awake</text> </svg></svg><line x1=\"76.39225645850382%\" x2=\"81.3499542101897%\" y1=\"60\" y2=\"60\" id=\"_fb_dekntqnofgdqyslbtpyr_ind_18\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"78.87110533434677%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dekntqnofgdqyslbtpyr_ind_18\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.021</text><svg x=\"76.39225645850382%\" y=\"40\" height=\"20\" width=\"4.9576977516858705%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">cares</text> </svg></svg><line x1=\"81.3499542101897%\" x2=\"85.04266625758119%\" y1=\"60\" y2=\"60\" id=\"_fb_dekntqnofgdqyslbtpyr_ind_6\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"83.19631023388544%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dekntqnofgdqyslbtpyr_ind_6\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.016</text><svg x=\"81.3499542101897%\" y=\"40\" height=\"20\" width=\"3.6927120473914954%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><line x1=\"85.04266625758119%\" x2=\"87.01314921275612%\" y1=\"60\" y2=\"60\" id=\"_fb_dekntqnofgdqyslbtpyr_ind_16\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"86.02790773516865%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dekntqnofgdqyslbtpyr_ind_16\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.009</text><svg x=\"85.04266625758119%\" y=\"40\" height=\"20\" width=\"1.9704829551749299%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">someone</text> </svg></svg><line x1=\"87.01314921275612%\" x2=\"88.89846079433619%\" y1=\"60\" y2=\"60\" id=\"_fb_dekntqnofgdqyslbtpyr_ind_12\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"87.95580500354615%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dekntqnofgdqyslbtpyr_ind_12\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.008</text><svg x=\"87.01314921275612%\" y=\"40\" height=\"20\" width=\"1.8853115815800692%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">just</text> </svg></svg><line x1=\"88.89846079433619%\" x2=\"90.05820644851401%\" y1=\"60\" y2=\"60\" id=\"_fb_dekntqnofgdqyslbtpyr_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"89.4783336214251%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dekntqnofgdqyslbtpyr_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.005</text><svg x=\"88.89846079433619%\" y=\"40\" height=\"20\" width=\"1.1597456541778257%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">can</text> </svg></svg><line x1=\"90.05820644851401%\" x2=\"90.93007657485917%\" y1=\"60\" y2=\"60\" id=\"_fb_dekntqnofgdqyslbtpyr_ind_19\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"90.49414151168659%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dekntqnofgdqyslbtpyr_ind_19\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.004</text><svg x=\"90.05820644851401%\" y=\"40\" height=\"20\" width=\"0.8718701263451578%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">and</text> </svg></svg><line x1=\"90.93007657485917%\" x2=\"91.36087077337639%\" y1=\"60\" y2=\"60\" id=\"_fb_dekntqnofgdqyslbtpyr_ind_17\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.14547367411778%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dekntqnofgdqyslbtpyr_ind_17\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.002</text><svg x=\"90.93007657485917%\" y=\"40\" height=\"20\" width=\"0.43079419851721923%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">who</text> </svg></svg><line x1=\"91.36087077337639%\" x2=\"91.66069737475033%\" y1=\"60\" y2=\"60\" id=\"_fb_dekntqnofgdqyslbtpyr_ind_14\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.51078407406337%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dekntqnofgdqyslbtpyr_ind_14\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.001</text><svg x=\"91.36087077337639%\" y=\"40\" height=\"20\" width=\"0.2998266013739368%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">being</text> </svg></svg><line x1=\"91.66069737475033%\" x2=\"91.66435676770823%\" y1=\"60\" y2=\"60\" id=\"_fb_dekntqnofgdqyslbtpyr_ind_22\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.66252707122928%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dekntqnofgdqyslbtpyr_ind_22\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"91.66069737475033%\" y=\"40\" height=\"20\" width=\"0.003659392957899854%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><line x1=\"91.66435676770823%\" x2=\"91.66714770803424%\" y1=\"60\" y2=\"60\" id=\"_fb_dekntqnofgdqyslbtpyr_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.66575223787123%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dekntqnofgdqyslbtpyr_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"91.66435676770823%\" y=\"40\" height=\"20\" width=\"0.00279094032600824%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"41.08525330725564%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"41.08525330725564%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"41.08525330725564%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"41.08525330725564%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"41.08525330725564%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"41.08525330725564%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"41.08525330725564%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"41.08525330725564%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"59.584627426265904%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"59.584627426265904%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"59.584627426265904%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"59.584627426265904%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"59.584627426265904%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"59.584627426265904%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"59.584627426265904%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"59.584627426265904%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"70.03030606757804%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"70.03030606757804%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"70.03030606757804%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"70.03030606757804%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"70.03030606757804%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"70.03030606757804%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"70.03030606757804%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"70.03030606757804%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"76.39225645850382%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"76.39225645850382%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"76.39225645850382%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"76.39225645850382%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"76.39225645850382%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"76.39225645850382%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"76.39225645850382%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"76.39225645850382%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"81.3499542101897%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"81.3499542101897%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"81.3499542101897%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"81.3499542101897%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"81.3499542101897%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"81.3499542101897%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"81.3499542101897%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"81.3499542101897%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"85.04266625758119%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"85.04266625758119%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"85.04266625758119%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"85.04266625758119%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"85.04266625758119%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"85.04266625758119%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"85.04266625758119%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"85.04266625758119%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"87.01314921275612%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"87.01314921275612%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"87.01314921275612%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"87.01314921275612%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"87.01314921275612%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"87.01314921275612%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"87.01314921275612%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"87.01314921275612%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"88.89846079433619%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"88.89846079433619%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"88.89846079433619%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"88.89846079433619%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"88.89846079433619%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"88.89846079433619%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"88.89846079433619%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"88.89846079433619%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"90.05820644851401%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.05820644851401%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.05820644851401%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.05820644851401%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.05820644851401%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.05820644851401%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.05820644851401%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.05820644851401%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"90.93007657485917%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.93007657485917%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.93007657485917%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.93007657485917%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.93007657485917%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.93007657485917%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.93007657485917%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.93007657485917%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.36087077337639%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.36087077337639%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.36087077337639%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.36087077337639%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.36087077337639%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.36087077337639%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.36087077337639%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.36087077337639%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.66069737475033%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.66069737475033%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.66069737475033%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.66069737475033%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.66069737475033%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.66069737475033%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.66069737475033%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.66069737475033%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.66435676770823%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.66435676770823%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.66435676770823%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.66435676770823%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.66435676770823%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.66435676770823%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.66435676770823%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.66435676770823%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"18.617169592736825%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66714770803424%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"41.08525330725564%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"18.617169592736825%\" y=\"40\" height=\"20\" width=\"22.468083714518816%\" onmouseover=\"document.getElementById('_tp_dekntqnofgdqyslbtpyr_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_11').style.opacity = 1;document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dekntqnofgdqyslbtpyr_ind_11').style.textDecoration = 'none';document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_11').style.opacity = 0;document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"59.584627426265904%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"41.08525330725564%\" y=\"40\" height=\"20\" width=\"18.499374119010263%\" onmouseover=\"document.getElementById('_tp_dekntqnofgdqyslbtpyr_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_7').style.opacity = 1;document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dekntqnofgdqyslbtpyr_ind_7').style.textDecoration = 'none';document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_7').style.opacity = 0;document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"70.03030606757804%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"59.584627426265904%\" y=\"40\" height=\"20\" width=\"10.445678641312135%\" onmouseover=\"document.getElementById('_tp_dekntqnofgdqyslbtpyr_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_5').style.opacity = 1;document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dekntqnofgdqyslbtpyr_ind_5').style.textDecoration = 'none';document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_5').style.opacity = 0;document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"76.39225645850382%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"70.03030606757804%\" y=\"40\" height=\"20\" width=\"6.361950390925784%\" onmouseover=\"document.getElementById('_tp_dekntqnofgdqyslbtpyr_ind_21').style.textDecoration = 'underline';document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_21').style.opacity = 1;document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_21').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dekntqnofgdqyslbtpyr_ind_21').style.textDecoration = 'none';document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_21').style.opacity = 0;document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_21').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"81.3499542101897%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"76.39225645850382%\" y=\"40\" height=\"20\" width=\"4.9576977516858705%\" onmouseover=\"document.getElementById('_tp_dekntqnofgdqyslbtpyr_ind_18').style.textDecoration = 'underline';document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_18').style.opacity = 1;document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_18').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dekntqnofgdqyslbtpyr_ind_18').style.textDecoration = 'none';document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_18').style.opacity = 0;document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_18').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"85.04266625758119%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"81.3499542101897%\" y=\"40\" height=\"20\" width=\"3.6927120473914954%\" onmouseover=\"document.getElementById('_tp_dekntqnofgdqyslbtpyr_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_6').style.opacity = 1;document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dekntqnofgdqyslbtpyr_ind_6').style.textDecoration = 'none';document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_6').style.opacity = 0;document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"87.01314921275612%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"85.04266625758119%\" y=\"40\" height=\"20\" width=\"1.9704829551749299%\" onmouseover=\"document.getElementById('_tp_dekntqnofgdqyslbtpyr_ind_16').style.textDecoration = 'underline';document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_16').style.opacity = 1;document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_16').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dekntqnofgdqyslbtpyr_ind_16').style.textDecoration = 'none';document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_16').style.opacity = 0;document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_16').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"88.89846079433619%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"87.01314921275612%\" y=\"40\" height=\"20\" width=\"1.8853115815800692%\" onmouseover=\"document.getElementById('_tp_dekntqnofgdqyslbtpyr_ind_12').style.textDecoration = 'underline';document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_12').style.opacity = 1;document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_12').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dekntqnofgdqyslbtpyr_ind_12').style.textDecoration = 'none';document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_12').style.opacity = 0;document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_12').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"90.05820644851401%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"88.89846079433619%\" y=\"40\" height=\"20\" width=\"1.1597456541778257%\" onmouseover=\"document.getElementById('_tp_dekntqnofgdqyslbtpyr_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_2').style.opacity = 1;document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dekntqnofgdqyslbtpyr_ind_2').style.textDecoration = 'none';document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_2').style.opacity = 0;document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"90.93007657485917%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"90.05820644851401%\" y=\"40\" height=\"20\" width=\"0.8718701263451578%\" onmouseover=\"document.getElementById('_tp_dekntqnofgdqyslbtpyr_ind_19').style.textDecoration = 'underline';document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_19').style.opacity = 1;document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_19').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dekntqnofgdqyslbtpyr_ind_19').style.textDecoration = 'none';document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_19').style.opacity = 0;document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_19').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.36087077337639%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"90.93007657485917%\" y=\"40\" height=\"20\" width=\"0.43079419851721923%\" onmouseover=\"document.getElementById('_tp_dekntqnofgdqyslbtpyr_ind_17').style.textDecoration = 'underline';document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_17').style.opacity = 1;document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_17').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dekntqnofgdqyslbtpyr_ind_17').style.textDecoration = 'none';document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_17').style.opacity = 0;document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_17').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66069737475033%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.36087077337639%\" y=\"40\" height=\"20\" width=\"0.2998266013739368%\" onmouseover=\"document.getElementById('_tp_dekntqnofgdqyslbtpyr_ind_14').style.textDecoration = 'underline';document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_14').style.opacity = 1;document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_14').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dekntqnofgdqyslbtpyr_ind_14').style.textDecoration = 'none';document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_14').style.opacity = 0;document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_14').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66435676770823%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.66069737475033%\" y=\"40\" height=\"20\" width=\"0.003659392957899854%\" onmouseover=\"document.getElementById('_tp_dekntqnofgdqyslbtpyr_ind_22').style.textDecoration = 'underline';document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_22').style.opacity = 1;document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_22').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dekntqnofgdqyslbtpyr_ind_22').style.textDecoration = 'none';document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_22').style.opacity = 0;document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_22').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"91.66435676770823%\" y=\"40\" height=\"20\" width=\"0.00279094032600824%\" onmouseover=\"document.getElementById('_tp_dekntqnofgdqyslbtpyr_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_0').style.opacity = 1;document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dekntqnofgdqyslbtpyr_ind_0').style.textDecoration = 'none';document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_0').style.opacity = 0;document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_dekntqnofgdqyslbtpyr_ind_0'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_0').style.opacity = 1; document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_0').style.opacity = 0; document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.002</div\n",
|
|
" ><div id='_tp_dekntqnofgdqyslbtpyr_ind_1'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.014656367597544035); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_1').style.opacity = 1; document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_1').style.opacity = 0; document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_1').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.005</div\n",
|
|
" ><div id='_tp_dekntqnofgdqyslbtpyr_ind_2'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.04618736383442258); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_2').style.opacity = 1; document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_2').style.opacity = 0; document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_2').style.opacity = 0;\"\n",
|
|
" >can </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.003</div\n",
|
|
" ><div id='_tp_dekntqnofgdqyslbtpyr_ind_3'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.02253911665676371); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_3').style.opacity = 1; document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_3').style.opacity = 0; document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_3').style.opacity = 0;\"\n",
|
|
" >go </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.005</div\n",
|
|
" ><div id='_tp_dekntqnofgdqyslbtpyr_ind_4'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.04618736383442265); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_4').style.opacity = 1; document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_4').style.opacity = 0; document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_4').style.opacity = 0;\"\n",
|
|
" >from </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.045</div\n",
|
|
" ><div id='_tp_dekntqnofgdqyslbtpyr_ind_5'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.46397306397306387); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_5').style.opacity = 1; document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_5').style.opacity = 0; document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_5').style.opacity = 0;\"\n",
|
|
" >feeling </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.016</div\n",
|
|
" ><div id='_tp_dekntqnofgdqyslbtpyr_ind_6'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.16442859972271748); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_6').style.opacity = 1; document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_6').style.opacity = 0; document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_6').style.opacity = 0;\"\n",
|
|
" >so </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.08</div\n",
|
|
" ><div id='_tp_dekntqnofgdqyslbtpyr_ind_7'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.8265795206971678); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_7').style.opacity = 1; document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_7').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_7').style.opacity = 0; document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_7').style.opacity = 0;\"\n",
|
|
" >hopeless </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.005</div\n",
|
|
" ><div id='_tp_dekntqnofgdqyslbtpyr_ind_8'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.04618736383442265); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_8').style.opacity = 1; document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_8').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_8').style.opacity = 0; document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_8').style.opacity = 0;\"\n",
|
|
" >to </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.004</div\n",
|
|
" ><div id='_tp_dekntqnofgdqyslbtpyr_ind_9'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.03830461477520289); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_9').style.opacity = 1; document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_9').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_9').style.opacity = 0; document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_9').style.opacity = 0;\"\n",
|
|
" >so </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.015</div\n",
|
|
" ><div id='_tp_dekntqnofgdqyslbtpyr_ind_10'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.14866310160427795); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_10').style.opacity = 1; document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_10').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_10').style.opacity = 0; document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_10').style.opacity = 0;\"\n",
|
|
" >damned </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.097</div\n",
|
|
" ><div id='_tp_dekntqnofgdqyslbtpyr_ind_11'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 1.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_11').style.opacity = 1; document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_11').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_11').style.opacity = 0; document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_11').style.opacity = 0;\"\n",
|
|
" >hopeful </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.008</div\n",
|
|
" ><div id='_tp_dekntqnofgdqyslbtpyr_ind_12'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.07771836007130117); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_12').style.opacity = 1; document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_12').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_12').style.opacity = 0; document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_12').style.opacity = 0;\"\n",
|
|
" >just </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.003</div\n",
|
|
" ><div id='_tp_dekntqnofgdqyslbtpyr_ind_13'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.030421865715983164); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_13').style.opacity = 1; document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_13').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_13').style.opacity = 0; document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_13').style.opacity = 0;\"\n",
|
|
" >from </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.001</div\n",
|
|
" ><div id='_tp_dekntqnofgdqyslbtpyr_ind_14'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_14').style.opacity = 1; document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_14').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_14').style.opacity = 0; document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_14').style.opacity = 0;\"\n",
|
|
" >being </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.007</div\n",
|
|
" ><div id='_tp_dekntqnofgdqyslbtpyr_ind_15'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.06983561101208159); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_15').style.opacity = 1; document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_15').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_15').style.opacity = 0; document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_15').style.opacity = 0;\"\n",
|
|
" >around </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.009</div\n",
|
|
" ><div id='_tp_dekntqnofgdqyslbtpyr_ind_16'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.08560110913052085); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_16').style.opacity = 1; document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_16').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_16').style.opacity = 0; document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_16').style.opacity = 0;\"\n",
|
|
" >someone </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.002</div\n",
|
|
" ><div id='_tp_dekntqnofgdqyslbtpyr_ind_17'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_17').style.opacity = 1; document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_17').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_17').style.opacity = 0; document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_17').style.opacity = 0;\"\n",
|
|
" >who </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.021</div\n",
|
|
" ><div id='_tp_dekntqnofgdqyslbtpyr_ind_18'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.21960784313725487); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_18').style.opacity = 1; document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_18').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_18').style.opacity = 0; document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_18').style.opacity = 0;\"\n",
|
|
" >cares </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.004</div\n",
|
|
" ><div id='_tp_dekntqnofgdqyslbtpyr_ind_19'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03042186571598325); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_19').style.opacity = 1; document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_19').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_19').style.opacity = 0; document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_19').style.opacity = 0;\"\n",
|
|
" >and </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.001</div\n",
|
|
" ><div id='_tp_dekntqnofgdqyslbtpyr_ind_20'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_20').style.opacity = 1; document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_20').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_20').style.opacity = 0; document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_20').style.opacity = 0;\"\n",
|
|
" >is </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.027</div\n",
|
|
" ><div id='_tp_dekntqnofgdqyslbtpyr_ind_21'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.282669835611012); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_21').style.opacity = 1; document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_21').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_21').style.opacity = 0; document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_21').style.opacity = 0;\"\n",
|
|
" >awake</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_dekntqnofgdqyslbtpyr_ind_22'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_22').style.opacity = 1; document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_22').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dekntqnofgdqyslbtpyr_ind_22').style.opacity = 0; document.getElementById('_fs_dekntqnofgdqyslbtpyr_ind_22').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_mqwalcomvemcxolagrxb_output_4' style='display: none';><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"48.705281698548966%\" y1=\"33\" x2=\"48.705281698548966%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"48.705281698548966%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.3</text><line x1=\"37.053446541506865%\" y1=\"33\" x2=\"37.053446541506865%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"37.053446541506865%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.1</text><line x1=\"25.40161138446477%\" y1=\"33\" x2=\"25.40161138446477%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"25.40161138446477%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.1</text><line x1=\"13.749776227422668%\" y1=\"33\" x2=\"13.749776227422668%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"13.749776227422668%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.3</text><line x1=\"60.357116855591066%\" y1=\"33\" x2=\"60.357116855591066%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"60.357116855591066%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.5</text><line x1=\"72.00895201263315%\" y1=\"33\" x2=\"72.00895201263315%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"72.00895201263315%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.7</text><line x1=\"83.66078716967526%\" y1=\"33\" x2=\"83.66078716967526%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"83.66078716967526%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.9</text><line x1=\"38.394854520094306%\" y1=\"33\" x2=\"38.394854520094306%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"38.394854520094306%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.123025</text><text x=\"38.394854520094306%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.123025</text><text x=\"38.394854520094306%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"31.32362391879623%\" y1=\"33\" x2=\"31.32362391879623%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"31.32362391879623%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.00164944</text><text x=\"31.32362391879623%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.00164944</text><text x=\"31.32362391879623%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">fear</tspan>(inputs)</text><rect x=\"29.92710941407017%\" width=\"1.396514504726061%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"30.185081692587886%\" x2=\"31.32362391879623%\" y1=\"60\" y2=\"60\" id=\"_fb_aovicadwfjgzbzcuchnm_ind_19\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"30.754352805692058%\" y=\"71\" font-size=\"12px\" id=\"_fs_aovicadwfjgzbzcuchnm_ind_19\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.02</text><svg x=\"30.185081692587886%\" y=\"40\" height=\"20\" width=\"1.1385422262083438%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">and</text> </svg></svg><line x1=\"30.009339466608296%\" x2=\"30.185081692587886%\" y1=\"60\" y2=\"60\" id=\"_fb_aovicadwfjgzbzcuchnm_ind_15\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"30.09721057959809%\" y=\"71\" font-size=\"12px\" id=\"_fs_aovicadwfjgzbzcuchnm_ind_15\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.003</text><svg x=\"30.009339466608296%\" y=\"40\" height=\"20\" width=\"0.17574222597959022%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">around</text> </svg></svg><line x1=\"29.942505319227095%\" x2=\"30.009339466608296%\" y1=\"60\" y2=\"60\" id=\"_fb_aovicadwfjgzbzcuchnm_ind_13\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"29.975922392917695%\" y=\"71\" font-size=\"12px\" id=\"_fs_aovicadwfjgzbzcuchnm_ind_13\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.001</text><svg x=\"29.942505319227095%\" y=\"40\" height=\"20\" width=\"0.06683414738120064%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><line x1=\"29.92724803945188%\" x2=\"29.942505319227095%\" y1=\"60\" y2=\"60\" id=\"_fb_aovicadwfjgzbzcuchnm_ind_4\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"29.93487667933949%\" y=\"71\" font-size=\"12px\" id=\"_fs_aovicadwfjgzbzcuchnm_ind_4\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"29.92724803945188%\" y=\"40\" height=\"20\" width=\"0.015257279775216404%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><line x1=\"29.92710941407017%\" x2=\"29.92724803945188%\" y1=\"60\" y2=\"60\" id=\"_fb_aovicadwfjgzbzcuchnm_ind_8\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"29.927178726761024%\" y=\"71\" font-size=\"12px\" id=\"_fs_aovicadwfjgzbzcuchnm_ind_8\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"29.92710941407017%\" y=\"40\" height=\"20\" width=\"0.00013862538170883454%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"30.185081692587886%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"30.185081692587886%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"30.185081692587886%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"30.185081692587886%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"30.185081692587886%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"30.185081692587886%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"30.185081692587886%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"30.185081692587886%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"30.009339466608296%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"30.009339466608296%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"30.009339466608296%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"30.009339466608296%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"30.009339466608296%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"30.009339466608296%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"30.009339466608296%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"30.009339466608296%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"29.942505319227095%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"29.942505319227095%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"29.942505319227095%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"29.942505319227095%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"29.942505319227095%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"29.942505319227095%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"29.942505319227095%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"29.942505319227095%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"29.92724803945188%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"29.92724803945188%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"29.92724803945188%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"29.92724803945188%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"29.92724803945188%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"29.92724803945188%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"29.92724803945188%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"29.92724803945188%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"31.32362391879623%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"29.92710941407017%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"31.32362391879623%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"30.185081692587886%\" y=\"40\" height=\"20\" width=\"1.1385422262083438%\" onmouseover=\"document.getElementById('_tp_aovicadwfjgzbzcuchnm_ind_19').style.textDecoration = 'underline';document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_19').style.opacity = 1;document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_19').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_aovicadwfjgzbzcuchnm_ind_19').style.textDecoration = 'none';document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_19').style.opacity = 0;document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_19').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"30.185081692587886%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"30.009339466608296%\" y=\"40\" height=\"20\" width=\"0.17574222597959022%\" onmouseover=\"document.getElementById('_tp_aovicadwfjgzbzcuchnm_ind_15').style.textDecoration = 'underline';document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_15').style.opacity = 1;document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_15').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_aovicadwfjgzbzcuchnm_ind_15').style.textDecoration = 'none';document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_15').style.opacity = 0;document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_15').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"30.009339466608296%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"29.942505319227095%\" y=\"40\" height=\"20\" width=\"0.06683414738120064%\" onmouseover=\"document.getElementById('_tp_aovicadwfjgzbzcuchnm_ind_13').style.textDecoration = 'underline';document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_13').style.opacity = 1;document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_13').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_aovicadwfjgzbzcuchnm_ind_13').style.textDecoration = 'none';document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_13').style.opacity = 0;document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_13').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"29.942505319227095%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"29.92724803945188%\" y=\"40\" height=\"20\" width=\"0.015257279775216404%\" onmouseover=\"document.getElementById('_tp_aovicadwfjgzbzcuchnm_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_4').style.opacity = 1;document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_aovicadwfjgzbzcuchnm_ind_4').style.textDecoration = 'none';document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_4').style.opacity = 0;document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"29.92710941407017%\" y=\"40\" height=\"20\" width=\"0.00013862538170883454%\" onmouseover=\"document.getElementById('_tp_aovicadwfjgzbzcuchnm_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_8').style.opacity = 1;document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_aovicadwfjgzbzcuchnm_ind_8').style.textDecoration = 'none';document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_8').style.opacity = 0;document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"31.32362391879623%\" width=\"8.46774510602413%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"31.32362391879623%\" x2=\"33.16898459969084%\" y1=\"60\" y2=\"60\" id=\"_fb_aovicadwfjgzbzcuchnm_ind_18\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"32.24630425924353%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_aovicadwfjgzbzcuchnm_ind_18\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.032</text><svg x=\"31.32362391879623%\" y=\"40\" height=\"20\" width=\"1.8453606808946077%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">cares</text> </svg></svg><line x1=\"33.16898459969084%\" x2=\"34.59782187804127%\" y1=\"60\" y2=\"60\" id=\"_fb_aovicadwfjgzbzcuchnm_ind_11\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"33.88340323886605%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_aovicadwfjgzbzcuchnm_ind_11\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.025</text><svg x=\"33.16898459969084%\" y=\"40\" height=\"20\" width=\"1.4288372783504357%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeful</text> </svg></svg><line x1=\"34.59782187804127%\" x2=\"35.750257940222156%\" y1=\"60\" y2=\"60\" id=\"_fb_aovicadwfjgzbzcuchnm_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"35.174039909131714%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_aovicadwfjgzbzcuchnm_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.02</text><svg x=\"34.59782187804127%\" y=\"40\" height=\"20\" width=\"1.1524360621808825%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feeling</text> </svg></svg><line x1=\"35.750257940222156%\" x2=\"36.862127738278666%\" y1=\"60\" y2=\"60\" id=\"_fb_aovicadwfjgzbzcuchnm_ind_7\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"36.306192839250414%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_aovicadwfjgzbzcuchnm_ind_7\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.019</text><svg x=\"35.750257940222156%\" y=\"40\" height=\"20\" width=\"1.1118697980565102%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeless</text> </svg></svg><line x1=\"36.862127738278666%\" x2=\"37.48866242861183%\" y1=\"60\" y2=\"60\" id=\"_fb_aovicadwfjgzbzcuchnm_ind_6\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"37.17539508344525%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_aovicadwfjgzbzcuchnm_ind_6\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.011</text><svg x=\"36.862127738278666%\" y=\"40\" height=\"20\" width=\"0.6265346903331661%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><line x1=\"37.48866242861183%\" x2=\"37.986991246351806%\" y1=\"60\" y2=\"60\" id=\"_fb_aovicadwfjgzbzcuchnm_ind_12\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"37.73782683748182%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_aovicadwfjgzbzcuchnm_ind_12\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.009</text><svg x=\"37.48866242861183%\" y=\"40\" height=\"20\" width=\"0.4983288177399743%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">just</text> </svg></svg><line x1=\"37.986991246351806%\" x2=\"38.37728967848621%\" y1=\"60\" y2=\"60\" id=\"_fb_aovicadwfjgzbzcuchnm_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"38.18214046241901%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_aovicadwfjgzbzcuchnm_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.007</text><svg x=\"37.986991246351806%\" y=\"40\" height=\"20\" width=\"0.39029843213440074%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"38.37728967848621%\" x2=\"38.739588842633054%\" y1=\"60\" y2=\"60\" id=\"_fb_aovicadwfjgzbzcuchnm_ind_16\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"38.55843926055963%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_aovicadwfjgzbzcuchnm_ind_16\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.006</text><svg x=\"38.37728967848621%\" y=\"40\" height=\"20\" width=\"0.3622991641468474%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">someone</text> </svg></svg><line x1=\"38.739588842633054%\" x2=\"38.96892399383738%\" y1=\"60\" y2=\"60\" id=\"_fb_aovicadwfjgzbzcuchnm_ind_17\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"38.85425641823522%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_aovicadwfjgzbzcuchnm_ind_17\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.004</text><svg x=\"38.739588842633054%\" y=\"40\" height=\"20\" width=\"0.22933515120432446%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">who</text> </svg></svg><line x1=\"38.96892399383738%\" x2=\"39.17575228677709%\" y1=\"60\" y2=\"60\" id=\"_fb_aovicadwfjgzbzcuchnm_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"39.07233814030724%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_aovicadwfjgzbzcuchnm_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.004</text><svg x=\"38.96892399383738%\" y=\"40\" height=\"20\" width=\"0.2068282929397114%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">can</text> </svg></svg><line x1=\"39.17575228677709%\" x2=\"39.33228412938554%\" y1=\"60\" y2=\"60\" id=\"_fb_aovicadwfjgzbzcuchnm_ind_10\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"39.25401820808132%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_aovicadwfjgzbzcuchnm_ind_10\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.003</text><svg x=\"39.17575228677709%\" y=\"40\" height=\"20\" width=\"0.15653184260845165%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">damned</text> </svg></svg><line x1=\"39.33228412938554%\" x2=\"39.48197263958134%\" y1=\"60\" y2=\"60\" id=\"_fb_aovicadwfjgzbzcuchnm_ind_9\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"39.40712838448344%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_aovicadwfjgzbzcuchnm_ind_9\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.003</text><svg x=\"39.33228412938554%\" y=\"40\" height=\"20\" width=\"0.14968851019580143%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><line x1=\"39.48197263958134%\" x2=\"39.572655234148485%\" y1=\"60\" y2=\"60\" id=\"_fb_aovicadwfjgzbzcuchnm_ind_20\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"39.527313936864914%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_aovicadwfjgzbzcuchnm_ind_20\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.002</text><svg x=\"39.48197263958134%\" y=\"40\" height=\"20\" width=\"0.09068259456714145%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">is</text> </svg></svg><line x1=\"39.572655234148485%\" x2=\"39.661243172431405%\" y1=\"60\" y2=\"60\" id=\"_fb_aovicadwfjgzbzcuchnm_ind_21\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"39.61694920328995%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_aovicadwfjgzbzcuchnm_ind_21\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.002</text><svg x=\"39.572655234148485%\" y=\"40\" height=\"20\" width=\"0.08858793828292022%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">awake</text> </svg></svg><line x1=\"39.661243172431405%\" x2=\"39.7438361679013%\" y1=\"60\" y2=\"60\" id=\"_fb_aovicadwfjgzbzcuchnm_ind_14\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"39.70253967016635%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_aovicadwfjgzbzcuchnm_ind_14\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.001</text><svg x=\"39.661243172431405%\" y=\"40\" height=\"20\" width=\"0.08259299546989496%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">being</text> </svg></svg><line x1=\"39.7438361679013%\" x2=\"39.78612159056579%\" y1=\"60\" y2=\"60\" id=\"_fb_aovicadwfjgzbzcuchnm_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"39.764978879233546%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_aovicadwfjgzbzcuchnm_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.001</text><svg x=\"39.7438361679013%\" y=\"40\" height=\"20\" width=\"0.042285422664491534%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">go</text> </svg></svg><line x1=\"39.78612159056579%\" x2=\"39.788893078741395%\" y1=\"60\" y2=\"60\" id=\"_fb_aovicadwfjgzbzcuchnm_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"39.7875073346536%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_aovicadwfjgzbzcuchnm_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"39.78612159056579%\" y=\"40\" height=\"20\" width=\"0.00277148817560402%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><line x1=\"39.788893078741395%\" x2=\"39.79136902482037%\" y1=\"60\" y2=\"60\" id=\"_fb_aovicadwfjgzbzcuchnm_ind_22\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"39.79013105178088%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_aovicadwfjgzbzcuchnm_ind_22\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"39.788893078741395%\" y=\"40\" height=\"20\" width=\"0.002475946078973834%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"33.16898459969084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"33.16898459969084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"33.16898459969084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"33.16898459969084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"33.16898459969084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"33.16898459969084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"33.16898459969084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"33.16898459969084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"34.59782187804127%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"34.59782187804127%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"34.59782187804127%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"34.59782187804127%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"34.59782187804127%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"34.59782187804127%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"34.59782187804127%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"34.59782187804127%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"35.750257940222156%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"35.750257940222156%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"35.750257940222156%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"35.750257940222156%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"35.750257940222156%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"35.750257940222156%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"35.750257940222156%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"35.750257940222156%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"36.862127738278666%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"36.862127738278666%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"36.862127738278666%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"36.862127738278666%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"36.862127738278666%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"36.862127738278666%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"36.862127738278666%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"36.862127738278666%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"37.48866242861183%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"37.48866242861183%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"37.48866242861183%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"37.48866242861183%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"37.48866242861183%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"37.48866242861183%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"37.48866242861183%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"37.48866242861183%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"37.986991246351806%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"37.986991246351806%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"37.986991246351806%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"37.986991246351806%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"37.986991246351806%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"37.986991246351806%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"37.986991246351806%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"37.986991246351806%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"38.37728967848621%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"38.37728967848621%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"38.37728967848621%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"38.37728967848621%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"38.37728967848621%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"38.37728967848621%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"38.37728967848621%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"38.37728967848621%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"38.739588842633054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"38.739588842633054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"38.739588842633054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"38.739588842633054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"38.739588842633054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"38.739588842633054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"38.739588842633054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"38.739588842633054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"38.96892399383738%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"38.96892399383738%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"38.96892399383738%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"38.96892399383738%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"38.96892399383738%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"38.96892399383738%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"38.96892399383738%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"38.96892399383738%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"39.17575228677709%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"39.17575228677709%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"39.17575228677709%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"39.17575228677709%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"39.17575228677709%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"39.17575228677709%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"39.17575228677709%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"39.17575228677709%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"39.33228412938554%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"39.33228412938554%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"39.33228412938554%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"39.33228412938554%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"39.33228412938554%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"39.33228412938554%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"39.33228412938554%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"39.33228412938554%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"39.48197263958134%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"39.48197263958134%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"39.48197263958134%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"39.48197263958134%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"39.48197263958134%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"39.48197263958134%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"39.48197263958134%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"39.48197263958134%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"39.572655234148485%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"39.572655234148485%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"39.572655234148485%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"39.572655234148485%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"39.572655234148485%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"39.572655234148485%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"39.572655234148485%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"39.572655234148485%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"39.661243172431405%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"39.661243172431405%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"39.661243172431405%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"39.661243172431405%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"39.661243172431405%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"39.661243172431405%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"39.661243172431405%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"39.661243172431405%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"39.7438361679013%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"39.7438361679013%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"39.7438361679013%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"39.7438361679013%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"39.7438361679013%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"39.7438361679013%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"39.7438361679013%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"39.7438361679013%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"39.78612159056579%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"39.78612159056579%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"39.78612159056579%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"39.78612159056579%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"39.78612159056579%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"39.78612159056579%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"39.78612159056579%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"39.78612159056579%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"39.788893078741395%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"39.788893078741395%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"39.788893078741395%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"39.788893078741395%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"39.788893078741395%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"39.788893078741395%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"39.788893078741395%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"39.788893078741395%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"31.32362391879623%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"39.79136902482037%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"33.16898459969084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"31.32362391879623%\" y=\"40\" height=\"20\" width=\"1.8453606808946077%\" onmouseover=\"document.getElementById('_tp_aovicadwfjgzbzcuchnm_ind_18').style.textDecoration = 'underline';document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_18').style.opacity = 1;document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_18').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_aovicadwfjgzbzcuchnm_ind_18').style.textDecoration = 'none';document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_18').style.opacity = 0;document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_18').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"34.59782187804127%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"33.16898459969084%\" y=\"40\" height=\"20\" width=\"1.4288372783504357%\" onmouseover=\"document.getElementById('_tp_aovicadwfjgzbzcuchnm_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_11').style.opacity = 1;document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_aovicadwfjgzbzcuchnm_ind_11').style.textDecoration = 'none';document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_11').style.opacity = 0;document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"35.750257940222156%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"34.59782187804127%\" y=\"40\" height=\"20\" width=\"1.1524360621808825%\" onmouseover=\"document.getElementById('_tp_aovicadwfjgzbzcuchnm_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_5').style.opacity = 1;document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_aovicadwfjgzbzcuchnm_ind_5').style.textDecoration = 'none';document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_5').style.opacity = 0;document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"36.862127738278666%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"35.750257940222156%\" y=\"40\" height=\"20\" width=\"1.1118697980565102%\" onmouseover=\"document.getElementById('_tp_aovicadwfjgzbzcuchnm_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_7').style.opacity = 1;document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_aovicadwfjgzbzcuchnm_ind_7').style.textDecoration = 'none';document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_7').style.opacity = 0;document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"37.48866242861183%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"36.862127738278666%\" y=\"40\" height=\"20\" width=\"0.6265346903331661%\" onmouseover=\"document.getElementById('_tp_aovicadwfjgzbzcuchnm_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_6').style.opacity = 1;document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_aovicadwfjgzbzcuchnm_ind_6').style.textDecoration = 'none';document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_6').style.opacity = 0;document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"37.986991246351806%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"37.48866242861183%\" y=\"40\" height=\"20\" width=\"0.4983288177399743%\" onmouseover=\"document.getElementById('_tp_aovicadwfjgzbzcuchnm_ind_12').style.textDecoration = 'underline';document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_12').style.opacity = 1;document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_12').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_aovicadwfjgzbzcuchnm_ind_12').style.textDecoration = 'none';document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_12').style.opacity = 0;document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_12').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"38.37728967848621%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"37.986991246351806%\" y=\"40\" height=\"20\" width=\"0.39029843213440074%\" onmouseover=\"document.getElementById('_tp_aovicadwfjgzbzcuchnm_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_1').style.opacity = 1;document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_aovicadwfjgzbzcuchnm_ind_1').style.textDecoration = 'none';document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_1').style.opacity = 0;document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"38.739588842633054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"38.37728967848621%\" y=\"40\" height=\"20\" width=\"0.3622991641468474%\" onmouseover=\"document.getElementById('_tp_aovicadwfjgzbzcuchnm_ind_16').style.textDecoration = 'underline';document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_16').style.opacity = 1;document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_16').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_aovicadwfjgzbzcuchnm_ind_16').style.textDecoration = 'none';document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_16').style.opacity = 0;document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_16').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"38.96892399383738%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"38.739588842633054%\" y=\"40\" height=\"20\" width=\"0.22933515120432446%\" onmouseover=\"document.getElementById('_tp_aovicadwfjgzbzcuchnm_ind_17').style.textDecoration = 'underline';document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_17').style.opacity = 1;document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_17').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_aovicadwfjgzbzcuchnm_ind_17').style.textDecoration = 'none';document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_17').style.opacity = 0;document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_17').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"39.17575228677709%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"38.96892399383738%\" y=\"40\" height=\"20\" width=\"0.2068282929397114%\" onmouseover=\"document.getElementById('_tp_aovicadwfjgzbzcuchnm_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_2').style.opacity = 1;document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_aovicadwfjgzbzcuchnm_ind_2').style.textDecoration = 'none';document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_2').style.opacity = 0;document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"39.33228412938554%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"39.17575228677709%\" y=\"40\" height=\"20\" width=\"0.15653184260845165%\" onmouseover=\"document.getElementById('_tp_aovicadwfjgzbzcuchnm_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_10').style.opacity = 1;document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_aovicadwfjgzbzcuchnm_ind_10').style.textDecoration = 'none';document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_10').style.opacity = 0;document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"39.48197263958134%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"39.33228412938554%\" y=\"40\" height=\"20\" width=\"0.14968851019580143%\" onmouseover=\"document.getElementById('_tp_aovicadwfjgzbzcuchnm_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_9').style.opacity = 1;document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_aovicadwfjgzbzcuchnm_ind_9').style.textDecoration = 'none';document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_9').style.opacity = 0;document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"39.572655234148485%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"39.48197263958134%\" y=\"40\" height=\"20\" width=\"0.09068259456714145%\" onmouseover=\"document.getElementById('_tp_aovicadwfjgzbzcuchnm_ind_20').style.textDecoration = 'underline';document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_20').style.opacity = 1;document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_20').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_aovicadwfjgzbzcuchnm_ind_20').style.textDecoration = 'none';document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_20').style.opacity = 0;document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_20').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"39.661243172431405%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"39.572655234148485%\" y=\"40\" height=\"20\" width=\"0.08858793828292022%\" onmouseover=\"document.getElementById('_tp_aovicadwfjgzbzcuchnm_ind_21').style.textDecoration = 'underline';document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_21').style.opacity = 1;document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_21').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_aovicadwfjgzbzcuchnm_ind_21').style.textDecoration = 'none';document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_21').style.opacity = 0;document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_21').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"39.7438361679013%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"39.661243172431405%\" y=\"40\" height=\"20\" width=\"0.08259299546989496%\" onmouseover=\"document.getElementById('_tp_aovicadwfjgzbzcuchnm_ind_14').style.textDecoration = 'underline';document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_14').style.opacity = 1;document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_14').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_aovicadwfjgzbzcuchnm_ind_14').style.textDecoration = 'none';document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_14').style.opacity = 0;document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_14').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"39.78612159056579%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"39.7438361679013%\" y=\"40\" height=\"20\" width=\"0.042285422664491534%\" onmouseover=\"document.getElementById('_tp_aovicadwfjgzbzcuchnm_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_3').style.opacity = 1;document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_aovicadwfjgzbzcuchnm_ind_3').style.textDecoration = 'none';document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_3').style.opacity = 0;document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"39.788893078741395%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"39.78612159056579%\" y=\"40\" height=\"20\" width=\"0.00277148817560402%\" onmouseover=\"document.getElementById('_tp_aovicadwfjgzbzcuchnm_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_0').style.opacity = 1;document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_aovicadwfjgzbzcuchnm_ind_0').style.textDecoration = 'none';document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_0').style.opacity = 0;document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"39.788893078741395%\" y=\"40\" height=\"20\" width=\"0.002475946078973834%\" onmouseover=\"document.getElementById('_tp_aovicadwfjgzbzcuchnm_ind_22').style.textDecoration = 'underline';document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_22').style.opacity = 1;document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_22').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_aovicadwfjgzbzcuchnm_ind_22').style.textDecoration = 'none';document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_22').style.opacity = 0;document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_22').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_aovicadwfjgzbzcuchnm_ind_0'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_0').style.opacity = 1; document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_0').style.opacity = 0; document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.007</div\n",
|
|
" ><div id='_tp_aovicadwfjgzbzcuchnm_ind_1'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_1').style.opacity = 1; document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_1').style.opacity = 0; document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_1').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.004</div\n",
|
|
" ><div id='_tp_aovicadwfjgzbzcuchnm_ind_2'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_2').style.opacity = 1; document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_2').style.opacity = 0; document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_2').style.opacity = 0;\"\n",
|
|
" >can </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.001</div\n",
|
|
" ><div id='_tp_aovicadwfjgzbzcuchnm_ind_3'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_3').style.opacity = 1; document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_3').style.opacity = 0; document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_3').style.opacity = 0;\"\n",
|
|
" >go </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_aovicadwfjgzbzcuchnm_ind_4'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_4').style.opacity = 1; document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_4').style.opacity = 0; document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_4').style.opacity = 0;\"\n",
|
|
" >from </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.02</div\n",
|
|
" ><div id='_tp_aovicadwfjgzbzcuchnm_ind_5'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_5').style.opacity = 1; document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_5').style.opacity = 0; document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_5').style.opacity = 0;\"\n",
|
|
" >feeling </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.011</div\n",
|
|
" ><div id='_tp_aovicadwfjgzbzcuchnm_ind_6'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_6').style.opacity = 1; document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_6').style.opacity = 0; document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_6').style.opacity = 0;\"\n",
|
|
" >so </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.019</div\n",
|
|
" ><div id='_tp_aovicadwfjgzbzcuchnm_ind_7'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_7').style.opacity = 1; document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_7').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_7').style.opacity = 0; document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_7').style.opacity = 0;\"\n",
|
|
" >hopeless </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_aovicadwfjgzbzcuchnm_ind_8'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_8').style.opacity = 1; document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_8').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_8').style.opacity = 0; document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_8').style.opacity = 0;\"\n",
|
|
" >to </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.003</div\n",
|
|
" ><div id='_tp_aovicadwfjgzbzcuchnm_ind_9'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_9').style.opacity = 1; document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_9').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_9').style.opacity = 0; document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_9').style.opacity = 0;\"\n",
|
|
" >so </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.003</div\n",
|
|
" ><div id='_tp_aovicadwfjgzbzcuchnm_ind_10'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_10').style.opacity = 1; document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_10').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_10').style.opacity = 0; document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_10').style.opacity = 0;\"\n",
|
|
" >damned </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.025</div\n",
|
|
" ><div id='_tp_aovicadwfjgzbzcuchnm_ind_11'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.022539116656763607); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_11').style.opacity = 1; document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_11').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_11').style.opacity = 0; document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_11').style.opacity = 0;\"\n",
|
|
" >hopeful </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.009</div\n",
|
|
" ><div id='_tp_aovicadwfjgzbzcuchnm_ind_12'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_12').style.opacity = 1; document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_12').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_12').style.opacity = 0; document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_12').style.opacity = 0;\"\n",
|
|
" >just </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.001</div\n",
|
|
" ><div id='_tp_aovicadwfjgzbzcuchnm_ind_13'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_13').style.opacity = 1; document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_13').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_13').style.opacity = 0; document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_13').style.opacity = 0;\"\n",
|
|
" >from </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.001</div\n",
|
|
" ><div id='_tp_aovicadwfjgzbzcuchnm_ind_14'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_14').style.opacity = 1; document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_14').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_14').style.opacity = 0; document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_14').style.opacity = 0;\"\n",
|
|
" >being </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.003</div\n",
|
|
" ><div id='_tp_aovicadwfjgzbzcuchnm_ind_15'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_15').style.opacity = 1; document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_15').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_15').style.opacity = 0; document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_15').style.opacity = 0;\"\n",
|
|
" >around </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.006</div\n",
|
|
" ><div id='_tp_aovicadwfjgzbzcuchnm_ind_16'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_16').style.opacity = 1; document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_16').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_16').style.opacity = 0; document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_16').style.opacity = 0;\"\n",
|
|
" >someone </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.004</div\n",
|
|
" ><div id='_tp_aovicadwfjgzbzcuchnm_ind_17'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_17').style.opacity = 1; document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_17').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_17').style.opacity = 0; document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_17').style.opacity = 0;\"\n",
|
|
" >who </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.032</div\n",
|
|
" ><div id='_tp_aovicadwfjgzbzcuchnm_ind_18'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03042186571598325); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_18').style.opacity = 1; document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_18').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_18').style.opacity = 0; document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_18').style.opacity = 0;\"\n",
|
|
" >cares </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.02</div\n",
|
|
" ><div id='_tp_aovicadwfjgzbzcuchnm_ind_19'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.014656367597544035); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_19').style.opacity = 1; document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_19').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_19').style.opacity = 0; document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_19').style.opacity = 0;\"\n",
|
|
" >and </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.002</div\n",
|
|
" ><div id='_tp_aovicadwfjgzbzcuchnm_ind_20'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_20').style.opacity = 1; document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_20').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_20').style.opacity = 0; document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_20').style.opacity = 0;\"\n",
|
|
" >is </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.002</div\n",
|
|
" ><div id='_tp_aovicadwfjgzbzcuchnm_ind_21'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_21').style.opacity = 1; document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_21').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_21').style.opacity = 0; document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_21').style.opacity = 0;\"\n",
|
|
" >awake</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_aovicadwfjgzbzcuchnm_ind_22'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_22').style.opacity = 1; document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_22').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_aovicadwfjgzbzcuchnm_ind_22').style.opacity = 0; document.getElementById('_fs_aovicadwfjgzbzcuchnm_ind_22').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_mqwalcomvemcxolagrxb_output_4_zoom' style='display: none;'><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"48.84976538171086%\" y1=\"33\" x2=\"48.84976538171086%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"48.84976538171086%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.06</text><line x1=\"34.08513836096309%\" y1=\"33\" x2=\"34.08513836096309%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"34.08513836096309%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.03</text><line x1=\"19.320511340215315%\" y1=\"33\" x2=\"19.320511340215315%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"19.320511340215315%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0</text><line x1=\"63.61439240245864%\" y1=\"33\" x2=\"63.61439240245864%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"63.61439240245864%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.09</text><line x1=\"78.3790194232064%\" y1=\"33\" x2=\"78.3790194232064%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"78.3790194232064%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.12</text><line x1=\"79.86770535770198%\" y1=\"33\" x2=\"79.86770535770198%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"79.86770535770198%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.123025</text><text x=\"79.86770535770198%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.123025</text><text x=\"79.86770535770198%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"20.13228972075566%\" y1=\"33\" x2=\"20.13228972075566%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"20.13228972075566%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.00164944</text><text x=\"20.13228972075566%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.00164944</text><text x=\"20.13228972075566%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">fear</tspan>(inputs)</text><rect x=\"8.334997412466098%\" width=\"11.797292308289562%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"10.514261836007442%\" x2=\"20.13228972075566%\" y1=\"60\" y2=\"60\" id=\"_fb_zffnnorltdphiuuiithk_ind_19\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"15.323275778381552%\" y=\"71\" font-size=\"12px\" id=\"_fs_zffnnorltdphiuuiithk_ind_19\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.02</text><svg x=\"10.514261836007442%\" y=\"40\" height=\"20\" width=\"9.61802788474822%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">and</text> </svg></svg><line x1=\"9.029649679259824%\" x2=\"10.514261836007442%\" y1=\"60\" y2=\"60\" id=\"_fb_zffnnorltdphiuuiithk_ind_15\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"9.771955757633634%\" y=\"71\" font-size=\"12px\" id=\"_fs_zffnnorltdphiuuiithk_ind_15\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.003</text><svg x=\"9.029649679259824%\" y=\"40\" height=\"20\" width=\"1.4846121567476178%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">around</text> </svg></svg><line x1=\"8.465056923392952%\" x2=\"9.029649679259824%\" y1=\"60\" y2=\"60\" id=\"_fb_zffnnorltdphiuuiithk_ind_13\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.747353301326388%\" y=\"71\" font-size=\"12px\" id=\"_fs_zffnnorltdphiuuiithk_ind_13\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.001</text><svg x=\"8.465056923392952%\" y=\"40\" height=\"20\" width=\"0.5645927558668724%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><line x1=\"8.33616847380762%\" x2=\"8.465056923392952%\" y1=\"60\" y2=\"60\" id=\"_fb_zffnnorltdphiuuiithk_ind_4\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.400612698600286%\" y=\"71\" font-size=\"12px\" id=\"_fs_zffnnorltdphiuuiithk_ind_4\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"8.33616847380762%\" y=\"40\" height=\"20\" width=\"0.1288884495853324%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><line x1=\"8.334997412466098%\" x2=\"8.33616847380762%\" y1=\"60\" y2=\"60\" id=\"_fb_zffnnorltdphiuuiithk_ind_8\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.33558294313686%\" y=\"71\" font-size=\"12px\" id=\"_fs_zffnnorltdphiuuiithk_ind_8\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"8.334997412466098%\" y=\"40\" height=\"20\" width=\"0.001171061341521451%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"10.514261836007442%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"10.514261836007442%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"10.514261836007442%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"10.514261836007442%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"10.514261836007442%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"10.514261836007442%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"10.514261836007442%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"10.514261836007442%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"9.029649679259824%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"9.029649679259824%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"9.029649679259824%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"9.029649679259824%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"9.029649679259824%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"9.029649679259824%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"9.029649679259824%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"9.029649679259824%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.465056923392952%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.465056923392952%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.465056923392952%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.465056923392952%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.465056923392952%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.465056923392952%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.465056923392952%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.465056923392952%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.33616847380762%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.33616847380762%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.33616847380762%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.33616847380762%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.33616847380762%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.33616847380762%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.33616847380762%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.33616847380762%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"20.13228972075566%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.334997412466098%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"20.13228972075566%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"10.514261836007442%\" y=\"40\" height=\"20\" width=\"9.61802788474822%\" onmouseover=\"document.getElementById('_tp_zffnnorltdphiuuiithk_ind_19').style.textDecoration = 'underline';document.getElementById('_fs_zffnnorltdphiuuiithk_ind_19').style.opacity = 1;document.getElementById('_fb_zffnnorltdphiuuiithk_ind_19').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zffnnorltdphiuuiithk_ind_19').style.textDecoration = 'none';document.getElementById('_fs_zffnnorltdphiuuiithk_ind_19').style.opacity = 0;document.getElementById('_fb_zffnnorltdphiuuiithk_ind_19').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"10.514261836007442%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"9.029649679259824%\" y=\"40\" height=\"20\" width=\"1.4846121567476178%\" onmouseover=\"document.getElementById('_tp_zffnnorltdphiuuiithk_ind_15').style.textDecoration = 'underline';document.getElementById('_fs_zffnnorltdphiuuiithk_ind_15').style.opacity = 1;document.getElementById('_fb_zffnnorltdphiuuiithk_ind_15').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zffnnorltdphiuuiithk_ind_15').style.textDecoration = 'none';document.getElementById('_fs_zffnnorltdphiuuiithk_ind_15').style.opacity = 0;document.getElementById('_fb_zffnnorltdphiuuiithk_ind_15').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"9.029649679259824%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.465056923392952%\" y=\"40\" height=\"20\" width=\"0.5645927558668724%\" onmouseover=\"document.getElementById('_tp_zffnnorltdphiuuiithk_ind_13').style.textDecoration = 'underline';document.getElementById('_fs_zffnnorltdphiuuiithk_ind_13').style.opacity = 1;document.getElementById('_fb_zffnnorltdphiuuiithk_ind_13').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zffnnorltdphiuuiithk_ind_13').style.textDecoration = 'none';document.getElementById('_fs_zffnnorltdphiuuiithk_ind_13').style.opacity = 0;document.getElementById('_fb_zffnnorltdphiuuiithk_ind_13').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"8.465056923392952%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.33616847380762%\" y=\"40\" height=\"20\" width=\"0.1288884495853324%\" onmouseover=\"document.getElementById('_tp_zffnnorltdphiuuiithk_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_zffnnorltdphiuuiithk_ind_4').style.opacity = 1;document.getElementById('_fb_zffnnorltdphiuuiithk_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zffnnorltdphiuuiithk_ind_4').style.textDecoration = 'none';document.getElementById('_fs_zffnnorltdphiuuiithk_ind_4').style.opacity = 0;document.getElementById('_fb_zffnnorltdphiuuiithk_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"8.334997412466098%\" y=\"40\" height=\"20\" width=\"0.001171061341521451%\" onmouseover=\"document.getElementById('_tp_zffnnorltdphiuuiithk_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_zffnnorltdphiuuiithk_ind_8').style.opacity = 1;document.getElementById('_fb_zffnnorltdphiuuiithk_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zffnnorltdphiuuiithk_ind_8').style.textDecoration = 'none';document.getElementById('_fs_zffnnorltdphiuuiithk_ind_8').style.opacity = 0;document.getElementById('_fb_zffnnorltdphiuuiithk_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"20.13228972075566%\" width=\"71.53270794523588%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"20.13228972075566%\" x2=\"35.72128596323177%\" y1=\"60\" y2=\"60\" id=\"_fb_zffnnorltdphiuuiithk_ind_18\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"27.926787841993715%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_zffnnorltdphiuuiithk_ind_18\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.032</text><svg x=\"20.13228972075566%\" y=\"40\" height=\"20\" width=\"15.58899624247611%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">cares</text> </svg></svg><line x1=\"35.72128596323177%\" x2=\"47.79163036469398%\" y1=\"60\" y2=\"60\" id=\"_fb_zffnnorltdphiuuiithk_ind_11\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"41.756458163962876%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_zffnnorltdphiuuiithk_ind_11\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.025</text><svg x=\"35.72128596323177%\" y=\"40\" height=\"20\" width=\"12.070344401462208%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeful</text> </svg></svg><line x1=\"47.79163036469398%\" x2=\"57.527028777064174%\" y1=\"60\" y2=\"60\" id=\"_fb_zffnnorltdphiuuiithk_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"52.65932957087908%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_zffnnorltdphiuuiithk_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.02</text><svg x=\"47.79163036469398%\" y=\"40\" height=\"20\" width=\"9.735398412370195%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feeling</text> </svg></svg><line x1=\"57.527028777064174%\" x2=\"66.9197368170029%\" y1=\"60\" y2=\"60\" id=\"_fb_zffnnorltdphiuuiithk_ind_7\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"62.22338279703354%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_zffnnorltdphiuuiithk_ind_7\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.019</text><svg x=\"57.527028777064174%\" y=\"40\" height=\"20\" width=\"9.392708039938725%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeless</text> </svg></svg><line x1=\"66.9197368170029%\" x2=\"72.21249450632878%\" y1=\"60\" y2=\"60\" id=\"_fb_zffnnorltdphiuuiithk_ind_6\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"69.56611566166583%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_zffnnorltdphiuuiithk_ind_6\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.011</text><svg x=\"66.9197368170029%\" y=\"40\" height=\"20\" width=\"5.292757689325882%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><line x1=\"72.21249450632878%\" x2=\"76.4222114184177%\" y1=\"60\" y2=\"60\" id=\"_fb_zffnnorltdphiuuiithk_ind_12\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"74.31735296237323%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_zffnnorltdphiuuiithk_ind_12\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.009</text><svg x=\"72.21249450632878%\" y=\"40\" height=\"20\" width=\"4.209716912088922%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">just</text> </svg></svg><line x1=\"76.4222114184177%\" x2=\"79.71932338952456%\" y1=\"60\" y2=\"60\" id=\"_fb_zffnnorltdphiuuiithk_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"78.07076740397113%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_zffnnorltdphiuuiithk_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.007</text><svg x=\"76.4222114184177%\" y=\"40\" height=\"20\" width=\"3.297111971106858%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"79.71932338952456%\" x2=\"82.77990681205604%\" y1=\"60\" y2=\"60\" id=\"_fb_zffnnorltdphiuuiithk_ind_16\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"81.2496151007903%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_zffnnorltdphiuuiithk_ind_16\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.006</text><svg x=\"79.71932338952456%\" y=\"40\" height=\"20\" width=\"3.0605834225314794%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">someone</text> </svg></svg><line x1=\"82.77990681205604%\" x2=\"84.71725426256026%\" y1=\"60\" y2=\"60\" id=\"_fb_zffnnorltdphiuuiithk_ind_17\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"83.74858053730816%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_zffnnorltdphiuuiithk_ind_17\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.004</text><svg x=\"82.77990681205604%\" y=\"40\" height=\"20\" width=\"1.9373474505042196%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">who</text> </svg></svg><line x1=\"84.71725426256026%\" x2=\"86.46447122391434%\" y1=\"60\" y2=\"60\" id=\"_fb_zffnnorltdphiuuiithk_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"85.5908627432373%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_zffnnorltdphiuuiithk_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.004</text><svg x=\"84.71725426256026%\" y=\"40\" height=\"20\" width=\"1.7472169613540842%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">can</text> </svg></svg><line x1=\"86.46447122391434%\" x2=\"87.78680042032272%\" y1=\"60\" y2=\"60\" id=\"_fb_zffnnorltdphiuuiithk_ind_10\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"87.12563582211854%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_zffnnorltdphiuuiithk_ind_10\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.003</text><svg x=\"86.46447122391434%\" y=\"40\" height=\"20\" width=\"1.3223291964083757%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">damned</text> </svg></svg><line x1=\"87.78680042032272%\" x2=\"89.0513194095606%\" y1=\"60\" y2=\"60\" id=\"_fb_zffnnorltdphiuuiithk_ind_9\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"88.41905991494167%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_zffnnorltdphiuuiithk_ind_9\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.003</text><svg x=\"87.78680042032272%\" y=\"40\" height=\"20\" width=\"1.2645189892378852%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><line x1=\"89.0513194095606%\" x2=\"89.81737595373703%\" y1=\"60\" y2=\"60\" id=\"_fb_zffnnorltdphiuuiithk_ind_20\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"89.43434768164882%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_zffnnorltdphiuuiithk_ind_20\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.002</text><svg x=\"89.0513194095606%\" y=\"40\" height=\"20\" width=\"0.766056544176422%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">is</text> </svg></svg><line x1=\"89.81737595373703%\" x2=\"90.56573753492754%\" y1=\"60\" y2=\"60\" id=\"_fb_zffnnorltdphiuuiithk_ind_21\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"90.19155674433227%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_zffnnorltdphiuuiithk_ind_21\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.002</text><svg x=\"89.81737595373703%\" y=\"40\" height=\"20\" width=\"0.7483615811905082%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">awake</text> </svg></svg><line x1=\"90.56573753492754%\" x2=\"91.26345582347965%\" y1=\"60\" y2=\"60\" id=\"_fb_zffnnorltdphiuuiithk_ind_14\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"90.91459667920358%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_zffnnorltdphiuuiithk_ind_14\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.001</text><svg x=\"90.56573753492754%\" y=\"40\" height=\"20\" width=\"0.6977182885521103%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">being</text> </svg></svg><line x1=\"91.26345582347965%\" x2=\"91.6206690782395%\" y1=\"60\" y2=\"60\" id=\"_fb_zffnnorltdphiuuiithk_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.44206245085957%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_zffnnorltdphiuuiithk_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.001</text><svg x=\"91.26345582347965%\" y=\"40\" height=\"20\" width=\"0.35721325475985566%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">go</text> </svg></svg><line x1=\"91.6206690782395%\" x2=\"91.64408169302145%\" y1=\"60\" y2=\"60\" id=\"_fb_zffnnorltdphiuuiithk_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.63237538563047%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_zffnnorltdphiuuiithk_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"91.6206690782395%\" y=\"40\" height=\"20\" width=\"0.023412614781946672%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><line x1=\"91.64408169302145%\" x2=\"91.66499766599155%\" y1=\"60\" y2=\"60\" id=\"_fb_zffnnorltdphiuuiithk_ind_22\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.6545396795065%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_zffnnorltdphiuuiithk_ind_22\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"91.64408169302145%\" y=\"40\" height=\"20\" width=\"0.020915972970101393%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"35.72128596323177%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"35.72128596323177%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"35.72128596323177%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"35.72128596323177%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"35.72128596323177%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"35.72128596323177%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"35.72128596323177%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"35.72128596323177%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"47.79163036469398%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"47.79163036469398%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"47.79163036469398%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"47.79163036469398%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"47.79163036469398%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"47.79163036469398%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"47.79163036469398%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"47.79163036469398%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"57.527028777064174%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"57.527028777064174%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"57.527028777064174%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"57.527028777064174%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"57.527028777064174%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"57.527028777064174%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"57.527028777064174%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"57.527028777064174%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"66.9197368170029%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"66.9197368170029%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"66.9197368170029%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"66.9197368170029%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"66.9197368170029%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"66.9197368170029%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"66.9197368170029%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"66.9197368170029%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"72.21249450632878%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"72.21249450632878%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"72.21249450632878%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"72.21249450632878%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"72.21249450632878%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"72.21249450632878%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"72.21249450632878%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"72.21249450632878%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"76.4222114184177%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"76.4222114184177%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"76.4222114184177%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"76.4222114184177%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"76.4222114184177%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"76.4222114184177%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"76.4222114184177%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"76.4222114184177%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"79.71932338952456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"79.71932338952456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"79.71932338952456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"79.71932338952456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"79.71932338952456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"79.71932338952456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"79.71932338952456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"79.71932338952456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"82.77990681205604%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"82.77990681205604%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"82.77990681205604%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"82.77990681205604%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"82.77990681205604%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"82.77990681205604%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"82.77990681205604%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"82.77990681205604%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"84.71725426256026%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"84.71725426256026%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"84.71725426256026%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"84.71725426256026%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"84.71725426256026%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"84.71725426256026%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"84.71725426256026%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"84.71725426256026%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"86.46447122391434%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"86.46447122391434%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"86.46447122391434%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"86.46447122391434%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"86.46447122391434%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"86.46447122391434%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"86.46447122391434%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"86.46447122391434%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"87.78680042032272%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"87.78680042032272%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"87.78680042032272%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"87.78680042032272%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"87.78680042032272%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"87.78680042032272%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"87.78680042032272%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"87.78680042032272%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"89.0513194095606%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"89.0513194095606%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"89.0513194095606%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"89.0513194095606%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"89.0513194095606%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"89.0513194095606%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"89.0513194095606%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"89.0513194095606%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"89.81737595373703%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"89.81737595373703%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"89.81737595373703%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"89.81737595373703%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"89.81737595373703%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"89.81737595373703%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"89.81737595373703%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"89.81737595373703%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"90.56573753492754%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.56573753492754%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.56573753492754%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.56573753492754%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.56573753492754%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.56573753492754%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.56573753492754%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.56573753492754%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.26345582347965%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.26345582347965%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.26345582347965%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.26345582347965%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.26345582347965%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.26345582347965%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.26345582347965%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.26345582347965%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.6206690782395%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.6206690782395%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.6206690782395%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.6206690782395%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.6206690782395%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.6206690782395%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.6206690782395%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.6206690782395%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.64408169302145%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.64408169302145%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.64408169302145%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.64408169302145%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.64408169302145%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.64408169302145%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.64408169302145%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.64408169302145%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"20.13228972075566%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66499766599155%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"35.72128596323177%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"20.13228972075566%\" y=\"40\" height=\"20\" width=\"15.58899624247611%\" onmouseover=\"document.getElementById('_tp_zffnnorltdphiuuiithk_ind_18').style.textDecoration = 'underline';document.getElementById('_fs_zffnnorltdphiuuiithk_ind_18').style.opacity = 1;document.getElementById('_fb_zffnnorltdphiuuiithk_ind_18').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zffnnorltdphiuuiithk_ind_18').style.textDecoration = 'none';document.getElementById('_fs_zffnnorltdphiuuiithk_ind_18').style.opacity = 0;document.getElementById('_fb_zffnnorltdphiuuiithk_ind_18').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"47.79163036469398%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"35.72128596323177%\" y=\"40\" height=\"20\" width=\"12.070344401462208%\" onmouseover=\"document.getElementById('_tp_zffnnorltdphiuuiithk_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_zffnnorltdphiuuiithk_ind_11').style.opacity = 1;document.getElementById('_fb_zffnnorltdphiuuiithk_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zffnnorltdphiuuiithk_ind_11').style.textDecoration = 'none';document.getElementById('_fs_zffnnorltdphiuuiithk_ind_11').style.opacity = 0;document.getElementById('_fb_zffnnorltdphiuuiithk_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"57.527028777064174%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"47.79163036469398%\" y=\"40\" height=\"20\" width=\"9.735398412370195%\" onmouseover=\"document.getElementById('_tp_zffnnorltdphiuuiithk_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_zffnnorltdphiuuiithk_ind_5').style.opacity = 1;document.getElementById('_fb_zffnnorltdphiuuiithk_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zffnnorltdphiuuiithk_ind_5').style.textDecoration = 'none';document.getElementById('_fs_zffnnorltdphiuuiithk_ind_5').style.opacity = 0;document.getElementById('_fb_zffnnorltdphiuuiithk_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"66.9197368170029%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"57.527028777064174%\" y=\"40\" height=\"20\" width=\"9.392708039938725%\" onmouseover=\"document.getElementById('_tp_zffnnorltdphiuuiithk_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_zffnnorltdphiuuiithk_ind_7').style.opacity = 1;document.getElementById('_fb_zffnnorltdphiuuiithk_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zffnnorltdphiuuiithk_ind_7').style.textDecoration = 'none';document.getElementById('_fs_zffnnorltdphiuuiithk_ind_7').style.opacity = 0;document.getElementById('_fb_zffnnorltdphiuuiithk_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"72.21249450632878%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"66.9197368170029%\" y=\"40\" height=\"20\" width=\"5.292757689325882%\" onmouseover=\"document.getElementById('_tp_zffnnorltdphiuuiithk_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_zffnnorltdphiuuiithk_ind_6').style.opacity = 1;document.getElementById('_fb_zffnnorltdphiuuiithk_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zffnnorltdphiuuiithk_ind_6').style.textDecoration = 'none';document.getElementById('_fs_zffnnorltdphiuuiithk_ind_6').style.opacity = 0;document.getElementById('_fb_zffnnorltdphiuuiithk_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"76.4222114184177%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"72.21249450632878%\" y=\"40\" height=\"20\" width=\"4.209716912088922%\" onmouseover=\"document.getElementById('_tp_zffnnorltdphiuuiithk_ind_12').style.textDecoration = 'underline';document.getElementById('_fs_zffnnorltdphiuuiithk_ind_12').style.opacity = 1;document.getElementById('_fb_zffnnorltdphiuuiithk_ind_12').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zffnnorltdphiuuiithk_ind_12').style.textDecoration = 'none';document.getElementById('_fs_zffnnorltdphiuuiithk_ind_12').style.opacity = 0;document.getElementById('_fb_zffnnorltdphiuuiithk_ind_12').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"79.71932338952456%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"76.4222114184177%\" y=\"40\" height=\"20\" width=\"3.297111971106858%\" onmouseover=\"document.getElementById('_tp_zffnnorltdphiuuiithk_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_zffnnorltdphiuuiithk_ind_1').style.opacity = 1;document.getElementById('_fb_zffnnorltdphiuuiithk_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zffnnorltdphiuuiithk_ind_1').style.textDecoration = 'none';document.getElementById('_fs_zffnnorltdphiuuiithk_ind_1').style.opacity = 0;document.getElementById('_fb_zffnnorltdphiuuiithk_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"82.77990681205604%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"79.71932338952456%\" y=\"40\" height=\"20\" width=\"3.0605834225314794%\" onmouseover=\"document.getElementById('_tp_zffnnorltdphiuuiithk_ind_16').style.textDecoration = 'underline';document.getElementById('_fs_zffnnorltdphiuuiithk_ind_16').style.opacity = 1;document.getElementById('_fb_zffnnorltdphiuuiithk_ind_16').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zffnnorltdphiuuiithk_ind_16').style.textDecoration = 'none';document.getElementById('_fs_zffnnorltdphiuuiithk_ind_16').style.opacity = 0;document.getElementById('_fb_zffnnorltdphiuuiithk_ind_16').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"84.71725426256026%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"82.77990681205604%\" y=\"40\" height=\"20\" width=\"1.9373474505042196%\" onmouseover=\"document.getElementById('_tp_zffnnorltdphiuuiithk_ind_17').style.textDecoration = 'underline';document.getElementById('_fs_zffnnorltdphiuuiithk_ind_17').style.opacity = 1;document.getElementById('_fb_zffnnorltdphiuuiithk_ind_17').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zffnnorltdphiuuiithk_ind_17').style.textDecoration = 'none';document.getElementById('_fs_zffnnorltdphiuuiithk_ind_17').style.opacity = 0;document.getElementById('_fb_zffnnorltdphiuuiithk_ind_17').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"86.46447122391434%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"84.71725426256026%\" y=\"40\" height=\"20\" width=\"1.7472169613540842%\" onmouseover=\"document.getElementById('_tp_zffnnorltdphiuuiithk_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_zffnnorltdphiuuiithk_ind_2').style.opacity = 1;document.getElementById('_fb_zffnnorltdphiuuiithk_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zffnnorltdphiuuiithk_ind_2').style.textDecoration = 'none';document.getElementById('_fs_zffnnorltdphiuuiithk_ind_2').style.opacity = 0;document.getElementById('_fb_zffnnorltdphiuuiithk_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"87.78680042032272%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"86.46447122391434%\" y=\"40\" height=\"20\" width=\"1.3223291964083757%\" onmouseover=\"document.getElementById('_tp_zffnnorltdphiuuiithk_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_zffnnorltdphiuuiithk_ind_10').style.opacity = 1;document.getElementById('_fb_zffnnorltdphiuuiithk_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zffnnorltdphiuuiithk_ind_10').style.textDecoration = 'none';document.getElementById('_fs_zffnnorltdphiuuiithk_ind_10').style.opacity = 0;document.getElementById('_fb_zffnnorltdphiuuiithk_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"89.0513194095606%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"87.78680042032272%\" y=\"40\" height=\"20\" width=\"1.2645189892378852%\" onmouseover=\"document.getElementById('_tp_zffnnorltdphiuuiithk_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_zffnnorltdphiuuiithk_ind_9').style.opacity = 1;document.getElementById('_fb_zffnnorltdphiuuiithk_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zffnnorltdphiuuiithk_ind_9').style.textDecoration = 'none';document.getElementById('_fs_zffnnorltdphiuuiithk_ind_9').style.opacity = 0;document.getElementById('_fb_zffnnorltdphiuuiithk_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"89.81737595373703%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"89.0513194095606%\" y=\"40\" height=\"20\" width=\"0.766056544176422%\" onmouseover=\"document.getElementById('_tp_zffnnorltdphiuuiithk_ind_20').style.textDecoration = 'underline';document.getElementById('_fs_zffnnorltdphiuuiithk_ind_20').style.opacity = 1;document.getElementById('_fb_zffnnorltdphiuuiithk_ind_20').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zffnnorltdphiuuiithk_ind_20').style.textDecoration = 'none';document.getElementById('_fs_zffnnorltdphiuuiithk_ind_20').style.opacity = 0;document.getElementById('_fb_zffnnorltdphiuuiithk_ind_20').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"90.56573753492754%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"89.81737595373703%\" y=\"40\" height=\"20\" width=\"0.7483615811905082%\" onmouseover=\"document.getElementById('_tp_zffnnorltdphiuuiithk_ind_21').style.textDecoration = 'underline';document.getElementById('_fs_zffnnorltdphiuuiithk_ind_21').style.opacity = 1;document.getElementById('_fb_zffnnorltdphiuuiithk_ind_21').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zffnnorltdphiuuiithk_ind_21').style.textDecoration = 'none';document.getElementById('_fs_zffnnorltdphiuuiithk_ind_21').style.opacity = 0;document.getElementById('_fb_zffnnorltdphiuuiithk_ind_21').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.26345582347965%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"90.56573753492754%\" y=\"40\" height=\"20\" width=\"0.6977182885521103%\" onmouseover=\"document.getElementById('_tp_zffnnorltdphiuuiithk_ind_14').style.textDecoration = 'underline';document.getElementById('_fs_zffnnorltdphiuuiithk_ind_14').style.opacity = 1;document.getElementById('_fb_zffnnorltdphiuuiithk_ind_14').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zffnnorltdphiuuiithk_ind_14').style.textDecoration = 'none';document.getElementById('_fs_zffnnorltdphiuuiithk_ind_14').style.opacity = 0;document.getElementById('_fb_zffnnorltdphiuuiithk_ind_14').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.6206690782395%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.26345582347965%\" y=\"40\" height=\"20\" width=\"0.35721325475985566%\" onmouseover=\"document.getElementById('_tp_zffnnorltdphiuuiithk_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_zffnnorltdphiuuiithk_ind_3').style.opacity = 1;document.getElementById('_fb_zffnnorltdphiuuiithk_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zffnnorltdphiuuiithk_ind_3').style.textDecoration = 'none';document.getElementById('_fs_zffnnorltdphiuuiithk_ind_3').style.opacity = 0;document.getElementById('_fb_zffnnorltdphiuuiithk_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.64408169302145%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.6206690782395%\" y=\"40\" height=\"20\" width=\"0.023412614781946672%\" onmouseover=\"document.getElementById('_tp_zffnnorltdphiuuiithk_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_zffnnorltdphiuuiithk_ind_0').style.opacity = 1;document.getElementById('_fb_zffnnorltdphiuuiithk_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zffnnorltdphiuuiithk_ind_0').style.textDecoration = 'none';document.getElementById('_fs_zffnnorltdphiuuiithk_ind_0').style.opacity = 0;document.getElementById('_fb_zffnnorltdphiuuiithk_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"91.64408169302145%\" y=\"40\" height=\"20\" width=\"0.020915972970101393%\" onmouseover=\"document.getElementById('_tp_zffnnorltdphiuuiithk_ind_22').style.textDecoration = 'underline';document.getElementById('_fs_zffnnorltdphiuuiithk_ind_22').style.opacity = 1;document.getElementById('_fb_zffnnorltdphiuuiithk_ind_22').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zffnnorltdphiuuiithk_ind_22').style.textDecoration = 'none';document.getElementById('_fs_zffnnorltdphiuuiithk_ind_22').style.opacity = 0;document.getElementById('_fb_zffnnorltdphiuuiithk_ind_22').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_zffnnorltdphiuuiithk_ind_0'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_zffnnorltdphiuuiithk_ind_0').style.opacity = 1; document.getElementById('_fs_zffnnorltdphiuuiithk_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_zffnnorltdphiuuiithk_ind_0').style.opacity = 0; document.getElementById('_fs_zffnnorltdphiuuiithk_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.007</div\n",
|
|
" ><div id='_tp_zffnnorltdphiuuiithk_ind_1'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.21172509407803525); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_zffnnorltdphiuuiithk_ind_1').style.opacity = 1; document.getElementById('_fs_zffnnorltdphiuuiithk_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_zffnnorltdphiuuiithk_ind_1').style.opacity = 0; document.getElementById('_fs_zffnnorltdphiuuiithk_ind_1').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.004</div\n",
|
|
" ><div id='_tp_zffnnorltdphiuuiithk_ind_2'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.10924935630817977); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_zffnnorltdphiuuiithk_ind_2').style.opacity = 1; document.getElementById('_fs_zffnnorltdphiuuiithk_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_zffnnorltdphiuuiithk_ind_2').style.opacity = 0; document.getElementById('_fs_zffnnorltdphiuuiithk_ind_2').style.opacity = 0;\"\n",
|
|
" >can </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.001</div\n",
|
|
" ><div id='_tp_zffnnorltdphiuuiithk_ind_3'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_zffnnorltdphiuuiithk_ind_3').style.opacity = 1; document.getElementById('_fs_zffnnorltdphiuuiithk_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_zffnnorltdphiuuiithk_ind_3').style.opacity = 0; document.getElementById('_fs_zffnnorltdphiuuiithk_ind_3').style.opacity = 0;\"\n",
|
|
" >go </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_zffnnorltdphiuuiithk_ind_4'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_zffnnorltdphiuuiithk_ind_4').style.opacity = 1; document.getElementById('_fs_zffnnorltdphiuuiithk_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_zffnnorltdphiuuiithk_ind_4').style.opacity = 0; document.getElementById('_fs_zffnnorltdphiuuiithk_ind_4').style.opacity = 0;\"\n",
|
|
" >from </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.02</div\n",
|
|
" ><div id='_tp_zffnnorltdphiuuiithk_ind_5'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.6295107942166766); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_zffnnorltdphiuuiithk_ind_5').style.opacity = 1; document.getElementById('_fs_zffnnorltdphiuuiithk_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_zffnnorltdphiuuiithk_ind_5').style.opacity = 0; document.getElementById('_fs_zffnnorltdphiuuiithk_ind_5').style.opacity = 0;\"\n",
|
|
" >feeling </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.011</div\n",
|
|
" ><div id='_tp_zffnnorltdphiuuiithk_ind_6'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.33784907902554956); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_zffnnorltdphiuuiithk_ind_6').style.opacity = 1; document.getElementById('_fs_zffnnorltdphiuuiithk_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_zffnnorltdphiuuiithk_ind_6').style.opacity = 0; document.getElementById('_fs_zffnnorltdphiuuiithk_ind_6').style.opacity = 0;\"\n",
|
|
" >so </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.019</div\n",
|
|
" ><div id='_tp_zffnnorltdphiuuiithk_ind_7'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.6058625470390175); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_zffnnorltdphiuuiithk_ind_7').style.opacity = 1; document.getElementById('_fs_zffnnorltdphiuuiithk_ind_7').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_zffnnorltdphiuuiithk_ind_7').style.opacity = 0; document.getElementById('_fs_zffnnorltdphiuuiithk_ind_7').style.opacity = 0;\"\n",
|
|
" >hopeless </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_zffnnorltdphiuuiithk_ind_8'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_zffnnorltdphiuuiithk_ind_8').style.opacity = 1; document.getElementById('_fs_zffnnorltdphiuuiithk_ind_8').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_zffnnorltdphiuuiithk_ind_8').style.opacity = 0; document.getElementById('_fs_zffnnorltdphiuuiithk_ind_8').style.opacity = 0;\"\n",
|
|
" >to </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.003</div\n",
|
|
" ><div id='_tp_zffnnorltdphiuuiithk_ind_9'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.07771836007130117); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_zffnnorltdphiuuiithk_ind_9').style.opacity = 1; document.getElementById('_fs_zffnnorltdphiuuiithk_ind_9').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_zffnnorltdphiuuiithk_ind_9').style.opacity = 0; document.getElementById('_fs_zffnnorltdphiuuiithk_ind_9').style.opacity = 0;\"\n",
|
|
" >so </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.003</div\n",
|
|
" ><div id='_tp_zffnnorltdphiuuiithk_ind_10'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.07771836007130117); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_zffnnorltdphiuuiithk_ind_10').style.opacity = 1; document.getElementById('_fs_zffnnorltdphiuuiithk_ind_10').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_zffnnorltdphiuuiithk_ind_10').style.opacity = 0; document.getElementById('_fs_zffnnorltdphiuuiithk_ind_10').style.opacity = 0;\"\n",
|
|
" >damned </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.025</div\n",
|
|
" ><div id='_tp_zffnnorltdphiuuiithk_ind_11'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.7792830263418499); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_zffnnorltdphiuuiithk_ind_11').style.opacity = 1; document.getElementById('_fs_zffnnorltdphiuuiithk_ind_11').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_zffnnorltdphiuuiithk_ind_11').style.opacity = 0; document.getElementById('_fs_zffnnorltdphiuuiithk_ind_11').style.opacity = 0;\"\n",
|
|
" >hopeful </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.009</div\n",
|
|
" ><div id='_tp_zffnnorltdphiuuiithk_ind_12'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.2669043374925727); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_zffnnorltdphiuuiithk_ind_12').style.opacity = 1; document.getElementById('_fs_zffnnorltdphiuuiithk_ind_12').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_zffnnorltdphiuuiithk_ind_12').style.opacity = 0; document.getElementById('_fs_zffnnorltdphiuuiithk_ind_12').style.opacity = 0;\"\n",
|
|
" >just </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.001</div\n",
|
|
" ><div id='_tp_zffnnorltdphiuuiithk_ind_13'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.030421865715983164); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_zffnnorltdphiuuiithk_ind_13').style.opacity = 1; document.getElementById('_fs_zffnnorltdphiuuiithk_ind_13').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_zffnnorltdphiuuiithk_ind_13').style.opacity = 0; document.getElementById('_fs_zffnnorltdphiuuiithk_ind_13').style.opacity = 0;\"\n",
|
|
" >from </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.001</div\n",
|
|
" ><div id='_tp_zffnnorltdphiuuiithk_ind_14'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03830461477520309); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_zffnnorltdphiuuiithk_ind_14').style.opacity = 1; document.getElementById('_fs_zffnnorltdphiuuiithk_ind_14').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_zffnnorltdphiuuiithk_ind_14').style.opacity = 0; document.getElementById('_fs_zffnnorltdphiuuiithk_ind_14').style.opacity = 0;\"\n",
|
|
" >being </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.003</div\n",
|
|
" ><div id='_tp_zffnnorltdphiuuiithk_ind_15'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.09348385818974037); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_zffnnorltdphiuuiithk_ind_15').style.opacity = 1; document.getElementById('_fs_zffnnorltdphiuuiithk_ind_15').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_zffnnorltdphiuuiithk_ind_15').style.opacity = 0; document.getElementById('_fs_zffnnorltdphiuuiithk_ind_15').style.opacity = 0;\"\n",
|
|
" >around </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.006</div\n",
|
|
" ><div id='_tp_zffnnorltdphiuuiithk_ind_16'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.1959595959595959); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_zffnnorltdphiuuiithk_ind_16').style.opacity = 1; document.getElementById('_fs_zffnnorltdphiuuiithk_ind_16').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_zffnnorltdphiuuiithk_ind_16').style.opacity = 0; document.getElementById('_fs_zffnnorltdphiuuiithk_ind_16').style.opacity = 0;\"\n",
|
|
" >someone </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.004</div\n",
|
|
" ><div id='_tp_zffnnorltdphiuuiithk_ind_17'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.11713210536739943); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_zffnnorltdphiuuiithk_ind_17').style.opacity = 1; document.getElementById('_fs_zffnnorltdphiuuiithk_ind_17').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_zffnnorltdphiuuiithk_ind_17').style.opacity = 0; document.getElementById('_fs_zffnnorltdphiuuiithk_ind_17').style.opacity = 0;\"\n",
|
|
" >who </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.032</div\n",
|
|
" ><div id='_tp_zffnnorltdphiuuiithk_ind_18'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 1.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_zffnnorltdphiuuiithk_ind_18').style.opacity = 1; document.getElementById('_fs_zffnnorltdphiuuiithk_ind_18').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_zffnnorltdphiuuiithk_ind_18').style.opacity = 0; document.getElementById('_fs_zffnnorltdphiuuiithk_ind_18').style.opacity = 0;\"\n",
|
|
" >cares </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.02</div\n",
|
|
" ><div id='_tp_zffnnorltdphiuuiithk_ind_19'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.621628045157457); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_zffnnorltdphiuuiithk_ind_19').style.opacity = 1; document.getElementById('_fs_zffnnorltdphiuuiithk_ind_19').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_zffnnorltdphiuuiithk_ind_19').style.opacity = 0; document.getElementById('_fs_zffnnorltdphiuuiithk_ind_19').style.opacity = 0;\"\n",
|
|
" >and </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.002</div\n",
|
|
" ><div id='_tp_zffnnorltdphiuuiithk_ind_20'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.04618736383442258); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_zffnnorltdphiuuiithk_ind_20').style.opacity = 1; document.getElementById('_fs_zffnnorltdphiuuiithk_ind_20').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_zffnnorltdphiuuiithk_ind_20').style.opacity = 0; document.getElementById('_fs_zffnnorltdphiuuiithk_ind_20').style.opacity = 0;\"\n",
|
|
" >is </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.002</div\n",
|
|
" ><div id='_tp_zffnnorltdphiuuiithk_ind_21'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.04618736383442258); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_zffnnorltdphiuuiithk_ind_21').style.opacity = 1; document.getElementById('_fs_zffnnorltdphiuuiithk_ind_21').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_zffnnorltdphiuuiithk_ind_21').style.opacity = 0; document.getElementById('_fs_zffnnorltdphiuuiithk_ind_21').style.opacity = 0;\"\n",
|
|
" >awake</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_zffnnorltdphiuuiithk_ind_22'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_zffnnorltdphiuuiithk_ind_22').style.opacity = 1; document.getElementById('_fs_zffnnorltdphiuuiithk_ind_22').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_zffnnorltdphiuuiithk_ind_22').style.opacity = 0; document.getElementById('_fs_zffnnorltdphiuuiithk_ind_22').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_mqwalcomvemcxolagrxb_output_5' style='display: none';><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"48.705281698548966%\" y1=\"33\" x2=\"48.705281698548966%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"48.705281698548966%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.3</text><line x1=\"37.053446541506865%\" y1=\"33\" x2=\"37.053446541506865%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"37.053446541506865%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.1</text><line x1=\"25.40161138446477%\" y1=\"33\" x2=\"25.40161138446477%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"25.40161138446477%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.1</text><line x1=\"13.749776227422668%\" y1=\"33\" x2=\"13.749776227422668%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"13.749776227422668%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.3</text><line x1=\"60.357116855591066%\" y1=\"33\" x2=\"60.357116855591066%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"60.357116855591066%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.5</text><line x1=\"72.00895201263315%\" y1=\"33\" x2=\"72.00895201263315%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"72.00895201263315%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.7</text><line x1=\"83.66078716967526%\" y1=\"33\" x2=\"83.66078716967526%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"83.66078716967526%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.9</text><line x1=\"40.83243243808259%\" y1=\"33\" x2=\"40.83243243808259%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"40.83243243808259%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.164865</text><text x=\"40.83243243808259%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.164865</text><text x=\"40.83243243808259%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"31.251275665240108%\" y1=\"33\" x2=\"31.251275665240108%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"31.251275665240108%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.000407605</text><text x=\"31.251275665240108%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.000407605</text><text x=\"31.251275665240108%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">surprise</tspan>(inputs)</text><rect x=\"29.733438787530684%\" width=\"1.517836877709425%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"30.91071347230636%\" x2=\"31.251275665240108%\" y1=\"60\" y2=\"60\" id=\"_fb_seqdvlmrmssknccfxamq_ind_2\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"31.080994568773235%\" y=\"71\" font-size=\"12px\" id=\"_fs_seqdvlmrmssknccfxamq_ind_2\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.006</text><svg x=\"30.91071347230636%\" y=\"40\" height=\"20\" width=\"0.34056219293374923%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">can</text> </svg></svg><line x1=\"30.591789227566032%\" x2=\"30.91071347230636%\" y1=\"60\" y2=\"60\" id=\"_fb_seqdvlmrmssknccfxamq_ind_14\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"30.751251349936197%\" y=\"71\" font-size=\"12px\" id=\"_fs_seqdvlmrmssknccfxamq_ind_14\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.005</text><svg x=\"30.591789227566032%\" y=\"40\" height=\"20\" width=\"0.31892424474032666%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">being</text> </svg></svg><line x1=\"30.277312935210325%\" x2=\"30.591789227566032%\" y1=\"60\" y2=\"60\" id=\"_fb_seqdvlmrmssknccfxamq_ind_15\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"30.43455108138818%\" y=\"71\" font-size=\"12px\" id=\"_fs_seqdvlmrmssknccfxamq_ind_15\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.005</text><svg x=\"30.277312935210325%\" y=\"40\" height=\"20\" width=\"0.31447629235570673%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">around</text> </svg></svg><line x1=\"29.963781922982808%\" x2=\"30.277312935210325%\" y1=\"60\" y2=\"60\" id=\"_fb_seqdvlmrmssknccfxamq_ind_4\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"30.12054742909657%\" y=\"71\" font-size=\"12px\" id=\"_fs_seqdvlmrmssknccfxamq_ind_4\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.005</text><svg x=\"29.963781922982808%\" y=\"40\" height=\"20\" width=\"0.3135310122275179%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><line x1=\"29.759712014467134%\" x2=\"29.963781922982808%\" y1=\"60\" y2=\"60\" id=\"_fb_seqdvlmrmssknccfxamq_ind_1\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"29.861746968724972%\" y=\"71\" font-size=\"12px\" id=\"_fs_seqdvlmrmssknccfxamq_ind_1\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.004</text><svg x=\"29.759712014467134%\" y=\"40\" height=\"20\" width=\"0.20406990851567386%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"29.734076901297268%\" x2=\"29.759712014467134%\" y1=\"60\" y2=\"60\" id=\"_fb_seqdvlmrmssknccfxamq_ind_9\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"29.7468944578822%\" y=\"71\" font-size=\"12px\" id=\"_fs_seqdvlmrmssknccfxamq_ind_9\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"29.734076901297268%\" y=\"40\" height=\"20\" width=\"0.025635113169865775%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><line x1=\"29.733438787530684%\" x2=\"29.734076901297268%\" y1=\"60\" y2=\"60\" id=\"_fb_seqdvlmrmssknccfxamq_ind_19\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"29.733757844413976%\" y=\"71\" font-size=\"12px\" id=\"_fs_seqdvlmrmssknccfxamq_ind_19\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"29.733438787530684%\" y=\"40\" height=\"20\" width=\"0.0006381137665840697%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">and</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"30.91071347230636%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"30.91071347230636%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"30.91071347230636%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"30.91071347230636%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"30.91071347230636%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"30.91071347230636%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"30.91071347230636%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"30.91071347230636%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"30.591789227566032%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"30.591789227566032%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"30.591789227566032%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"30.591789227566032%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"30.591789227566032%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"30.591789227566032%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"30.591789227566032%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"30.591789227566032%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"30.277312935210325%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"30.277312935210325%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"30.277312935210325%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"30.277312935210325%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"30.277312935210325%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"30.277312935210325%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"30.277312935210325%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"30.277312935210325%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"29.963781922982808%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"29.963781922982808%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"29.963781922982808%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"29.963781922982808%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"29.963781922982808%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"29.963781922982808%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"29.963781922982808%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"29.963781922982808%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"29.759712014467134%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"29.759712014467134%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"29.759712014467134%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"29.759712014467134%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"29.759712014467134%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"29.759712014467134%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"29.759712014467134%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"29.759712014467134%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"29.734076901297268%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"29.734076901297268%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"29.734076901297268%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"29.734076901297268%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"29.734076901297268%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"29.734076901297268%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"29.734076901297268%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"29.734076901297268%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"31.251275665240108%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"29.733438787530684%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"31.251275665240108%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"30.91071347230636%\" y=\"40\" height=\"20\" width=\"0.34056219293374923%\" onmouseover=\"document.getElementById('_tp_seqdvlmrmssknccfxamq_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_2').style.opacity = 1;document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_seqdvlmrmssknccfxamq_ind_2').style.textDecoration = 'none';document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_2').style.opacity = 0;document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"30.91071347230636%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"30.591789227566032%\" y=\"40\" height=\"20\" width=\"0.31892424474032666%\" onmouseover=\"document.getElementById('_tp_seqdvlmrmssknccfxamq_ind_14').style.textDecoration = 'underline';document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_14').style.opacity = 1;document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_14').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_seqdvlmrmssknccfxamq_ind_14').style.textDecoration = 'none';document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_14').style.opacity = 0;document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_14').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"30.591789227566032%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"30.277312935210325%\" y=\"40\" height=\"20\" width=\"0.31447629235570673%\" onmouseover=\"document.getElementById('_tp_seqdvlmrmssknccfxamq_ind_15').style.textDecoration = 'underline';document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_15').style.opacity = 1;document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_15').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_seqdvlmrmssknccfxamq_ind_15').style.textDecoration = 'none';document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_15').style.opacity = 0;document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_15').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"30.277312935210325%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"29.963781922982808%\" y=\"40\" height=\"20\" width=\"0.3135310122275179%\" onmouseover=\"document.getElementById('_tp_seqdvlmrmssknccfxamq_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_4').style.opacity = 1;document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_seqdvlmrmssknccfxamq_ind_4').style.textDecoration = 'none';document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_4').style.opacity = 0;document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"29.963781922982808%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"29.759712014467134%\" y=\"40\" height=\"20\" width=\"0.20406990851567386%\" onmouseover=\"document.getElementById('_tp_seqdvlmrmssknccfxamq_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_1').style.opacity = 1;document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_seqdvlmrmssknccfxamq_ind_1').style.textDecoration = 'none';document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_1').style.opacity = 0;document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"29.759712014467134%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"29.734076901297268%\" y=\"40\" height=\"20\" width=\"0.025635113169865775%\" onmouseover=\"document.getElementById('_tp_seqdvlmrmssknccfxamq_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_9').style.opacity = 1;document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_seqdvlmrmssknccfxamq_ind_9').style.textDecoration = 'none';document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_9').style.opacity = 0;document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"29.733438787530684%\" y=\"40\" height=\"20\" width=\"0.0006381137665840697%\" onmouseover=\"document.getElementById('_tp_seqdvlmrmssknccfxamq_ind_19').style.textDecoration = 'underline';document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_19').style.opacity = 1;document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_19').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_seqdvlmrmssknccfxamq_ind_19').style.textDecoration = 'none';document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_19').style.opacity = 0;document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_19').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"31.251275665240108%\" width=\"11.098993650551906%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"31.251275665240108%\" x2=\"35.50953484312318%\" y1=\"60\" y2=\"60\" id=\"_fb_seqdvlmrmssknccfxamq_ind_7\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"33.38040525418164%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_seqdvlmrmssknccfxamq_ind_7\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.073</text><svg x=\"31.251275665240108%\" y=\"40\" height=\"20\" width=\"4.258259177883069%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeless</text> </svg></svg><line x1=\"35.50953484312318%\" x2=\"38.117015263096384%\" y1=\"60\" y2=\"60\" id=\"_fb_seqdvlmrmssknccfxamq_ind_11\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"36.81327505310978%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_seqdvlmrmssknccfxamq_ind_11\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.045</text><svg x=\"35.50953484312318%\" y=\"40\" height=\"20\" width=\"2.607480419973207%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeful</text> </svg></svg><line x1=\"38.117015263096384%\" x2=\"39.103964141981834%\" y1=\"60\" y2=\"60\" id=\"_fb_seqdvlmrmssknccfxamq_ind_6\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"38.61048970253911%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_seqdvlmrmssknccfxamq_ind_6\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.017</text><svg x=\"38.117015263096384%\" y=\"40\" height=\"20\" width=\"0.9869488788854497%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><line x1=\"39.103964141981834%\" x2=\"39.939795647778446%\" y1=\"60\" y2=\"60\" id=\"_fb_seqdvlmrmssknccfxamq_ind_18\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"39.52187989488014%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_seqdvlmrmssknccfxamq_ind_18\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.014</text><svg x=\"39.103964141981834%\" y=\"40\" height=\"20\" width=\"0.8358315057966124%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">cares</text> </svg></svg><line x1=\"39.939795647778446%\" x2=\"40.60288968216972%\" y1=\"60\" y2=\"60\" id=\"_fb_seqdvlmrmssknccfxamq_ind_16\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"40.271342664974085%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_seqdvlmrmssknccfxamq_ind_16\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.011</text><svg x=\"39.939795647778446%\" y=\"40\" height=\"20\" width=\"0.6630940343912712%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">someone</text> </svg></svg><line x1=\"40.60288968216972%\" x2=\"41.0352833827254%\" y1=\"60\" y2=\"60\" id=\"_fb_seqdvlmrmssknccfxamq_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"40.81908653244756%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_seqdvlmrmssknccfxamq_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.007</text><svg x=\"40.60288968216972%\" y=\"40\" height=\"20\" width=\"0.4323937005556857%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feeling</text> </svg></svg><line x1=\"41.0352833827254%\" x2=\"41.3690790313663%\" y1=\"60\" y2=\"60\" id=\"_fb_seqdvlmrmssknccfxamq_ind_8\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"41.202181207045854%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_seqdvlmrmssknccfxamq_ind_8\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.006</text><svg x=\"41.0352833827254%\" y=\"40\" height=\"20\" width=\"0.33379564864089417%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><line x1=\"41.3690790313663%\" x2=\"41.68758134382659%\" y1=\"60\" y2=\"60\" id=\"_fb_seqdvlmrmssknccfxamq_ind_21\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"41.52833018759644%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_seqdvlmrmssknccfxamq_ind_21\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.005</text><svg x=\"41.3690790313663%\" y=\"40\" height=\"20\" width=\"0.31850231246028926%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">awake</text> </svg></svg><line x1=\"41.68758134382659%\" x2=\"41.96086798077777%\" y1=\"60\" y2=\"60\" id=\"_fb_seqdvlmrmssknccfxamq_ind_20\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"41.82422466230218%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_seqdvlmrmssknccfxamq_ind_20\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.005</text><svg x=\"41.68758134382659%\" y=\"40\" height=\"20\" width=\"0.27328663695118394%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">is</text> </svg></svg><line x1=\"41.96086798077777%\" x2=\"42.14616210131891%\" y1=\"60\" y2=\"60\" id=\"_fb_seqdvlmrmssknccfxamq_ind_13\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"42.05351504104834%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_seqdvlmrmssknccfxamq_ind_13\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.003</text><svg x=\"41.96086798077777%\" y=\"40\" height=\"20\" width=\"0.18529412054113692%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><line x1=\"42.14616210131891%\" x2=\"42.22238349900845%\" y1=\"60\" y2=\"60\" id=\"_fb_seqdvlmrmssknccfxamq_ind_10\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"42.18427280016368%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_seqdvlmrmssknccfxamq_ind_10\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.001</text><svg x=\"42.14616210131891%\" y=\"40\" height=\"20\" width=\"0.07622139768954383%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">damned</text> </svg></svg><line x1=\"42.22238349900845%\" x2=\"42.2750600079494%\" y1=\"60\" y2=\"60\" id=\"_fb_seqdvlmrmssknccfxamq_ind_17\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"42.248721753478925%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_seqdvlmrmssknccfxamq_ind_17\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.001</text><svg x=\"42.22238349900845%\" y=\"40\" height=\"20\" width=\"0.052676508940948%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">who</text> </svg></svg><line x1=\"42.2750600079494%\" x2=\"42.31490922858261%\" y1=\"60\" y2=\"60\" id=\"_fb_seqdvlmrmssknccfxamq_ind_12\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"42.294984618266%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_seqdvlmrmssknccfxamq_ind_12\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.001</text><svg x=\"42.2750600079494%\" y=\"40\" height=\"20\" width=\"0.03984922063320795%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">just</text> </svg></svg><line x1=\"42.31490922858261%\" x2=\"42.34849254279505%\" y1=\"60\" y2=\"60\" id=\"_fb_seqdvlmrmssknccfxamq_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"42.33170088568883%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_seqdvlmrmssknccfxamq_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.001</text><svg x=\"42.31490922858261%\" y=\"40\" height=\"20\" width=\"0.03358331421244287%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">go</text> </svg></svg><line x1=\"42.34849254279505%\" x2=\"42.34962319100985%\" y1=\"60\" y2=\"60\" id=\"_fb_seqdvlmrmssknccfxamq_ind_22\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"42.34905786690245%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_seqdvlmrmssknccfxamq_ind_22\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"42.34849254279505%\" y=\"40\" height=\"20\" width=\"0.0011306482147972474%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><line x1=\"42.34962319100985%\" x2=\"42.35026931579202%\" y1=\"60\" y2=\"60\" id=\"_fb_seqdvlmrmssknccfxamq_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"42.34994625340093%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_seqdvlmrmssknccfxamq_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"42.34962319100985%\" y=\"40\" height=\"20\" width=\"0.000646124782171853%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"35.50953484312318%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"35.50953484312318%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"35.50953484312318%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"35.50953484312318%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"35.50953484312318%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"35.50953484312318%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"35.50953484312318%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"35.50953484312318%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"38.117015263096384%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"38.117015263096384%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"38.117015263096384%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"38.117015263096384%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"38.117015263096384%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"38.117015263096384%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"38.117015263096384%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"38.117015263096384%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"39.103964141981834%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"39.103964141981834%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"39.103964141981834%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"39.103964141981834%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"39.103964141981834%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"39.103964141981834%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"39.103964141981834%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"39.103964141981834%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"39.939795647778446%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"39.939795647778446%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"39.939795647778446%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"39.939795647778446%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"39.939795647778446%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"39.939795647778446%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"39.939795647778446%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"39.939795647778446%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"40.60288968216972%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"40.60288968216972%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"40.60288968216972%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"40.60288968216972%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"40.60288968216972%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"40.60288968216972%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"40.60288968216972%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"40.60288968216972%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"41.0352833827254%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"41.0352833827254%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"41.0352833827254%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"41.0352833827254%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"41.0352833827254%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"41.0352833827254%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"41.0352833827254%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"41.0352833827254%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"41.3690790313663%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"41.3690790313663%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"41.3690790313663%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"41.3690790313663%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"41.3690790313663%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"41.3690790313663%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"41.3690790313663%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"41.3690790313663%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"41.68758134382659%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"41.68758134382659%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"41.68758134382659%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"41.68758134382659%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"41.68758134382659%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"41.68758134382659%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"41.68758134382659%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"41.68758134382659%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"41.96086798077777%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"41.96086798077777%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"41.96086798077777%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"41.96086798077777%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"41.96086798077777%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"41.96086798077777%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"41.96086798077777%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"41.96086798077777%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"42.14616210131891%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"42.14616210131891%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"42.14616210131891%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"42.14616210131891%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"42.14616210131891%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"42.14616210131891%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"42.14616210131891%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"42.14616210131891%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"42.22238349900845%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"42.22238349900845%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"42.22238349900845%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"42.22238349900845%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"42.22238349900845%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"42.22238349900845%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"42.22238349900845%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"42.22238349900845%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"42.2750600079494%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"42.2750600079494%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"42.2750600079494%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"42.2750600079494%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"42.2750600079494%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"42.2750600079494%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"42.2750600079494%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"42.2750600079494%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"42.31490922858261%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"42.31490922858261%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"42.31490922858261%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"42.31490922858261%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"42.31490922858261%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"42.31490922858261%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"42.31490922858261%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"42.31490922858261%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"42.34849254279505%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"42.34849254279505%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"42.34849254279505%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"42.34849254279505%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"42.34849254279505%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"42.34849254279505%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"42.34849254279505%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"42.34849254279505%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"42.34962319100985%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"42.34962319100985%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"42.34962319100985%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"42.34962319100985%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"42.34962319100985%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"42.34962319100985%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"42.34962319100985%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"42.34962319100985%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"31.251275665240108%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"42.35026931579202%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"35.50953484312318%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"31.251275665240108%\" y=\"40\" height=\"20\" width=\"4.258259177883069%\" onmouseover=\"document.getElementById('_tp_seqdvlmrmssknccfxamq_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_7').style.opacity = 1;document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_seqdvlmrmssknccfxamq_ind_7').style.textDecoration = 'none';document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_7').style.opacity = 0;document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"38.117015263096384%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"35.50953484312318%\" y=\"40\" height=\"20\" width=\"2.607480419973207%\" onmouseover=\"document.getElementById('_tp_seqdvlmrmssknccfxamq_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_11').style.opacity = 1;document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_seqdvlmrmssknccfxamq_ind_11').style.textDecoration = 'none';document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_11').style.opacity = 0;document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"39.103964141981834%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"38.117015263096384%\" y=\"40\" height=\"20\" width=\"0.9869488788854497%\" onmouseover=\"document.getElementById('_tp_seqdvlmrmssknccfxamq_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_6').style.opacity = 1;document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_seqdvlmrmssknccfxamq_ind_6').style.textDecoration = 'none';document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_6').style.opacity = 0;document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"39.939795647778446%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"39.103964141981834%\" y=\"40\" height=\"20\" width=\"0.8358315057966124%\" onmouseover=\"document.getElementById('_tp_seqdvlmrmssknccfxamq_ind_18').style.textDecoration = 'underline';document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_18').style.opacity = 1;document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_18').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_seqdvlmrmssknccfxamq_ind_18').style.textDecoration = 'none';document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_18').style.opacity = 0;document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_18').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"40.60288968216972%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"39.939795647778446%\" y=\"40\" height=\"20\" width=\"0.6630940343912712%\" onmouseover=\"document.getElementById('_tp_seqdvlmrmssknccfxamq_ind_16').style.textDecoration = 'underline';document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_16').style.opacity = 1;document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_16').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_seqdvlmrmssknccfxamq_ind_16').style.textDecoration = 'none';document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_16').style.opacity = 0;document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_16').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"41.0352833827254%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"40.60288968216972%\" y=\"40\" height=\"20\" width=\"0.4323937005556857%\" onmouseover=\"document.getElementById('_tp_seqdvlmrmssknccfxamq_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_5').style.opacity = 1;document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_seqdvlmrmssknccfxamq_ind_5').style.textDecoration = 'none';document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_5').style.opacity = 0;document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"41.3690790313663%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"41.0352833827254%\" y=\"40\" height=\"20\" width=\"0.33379564864089417%\" onmouseover=\"document.getElementById('_tp_seqdvlmrmssknccfxamq_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_8').style.opacity = 1;document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_seqdvlmrmssknccfxamq_ind_8').style.textDecoration = 'none';document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_8').style.opacity = 0;document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"41.68758134382659%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"41.3690790313663%\" y=\"40\" height=\"20\" width=\"0.31850231246028926%\" onmouseover=\"document.getElementById('_tp_seqdvlmrmssknccfxamq_ind_21').style.textDecoration = 'underline';document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_21').style.opacity = 1;document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_21').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_seqdvlmrmssknccfxamq_ind_21').style.textDecoration = 'none';document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_21').style.opacity = 0;document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_21').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"41.96086798077777%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"41.68758134382659%\" y=\"40\" height=\"20\" width=\"0.27328663695118394%\" onmouseover=\"document.getElementById('_tp_seqdvlmrmssknccfxamq_ind_20').style.textDecoration = 'underline';document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_20').style.opacity = 1;document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_20').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_seqdvlmrmssknccfxamq_ind_20').style.textDecoration = 'none';document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_20').style.opacity = 0;document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_20').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"42.14616210131891%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"41.96086798077777%\" y=\"40\" height=\"20\" width=\"0.18529412054113692%\" onmouseover=\"document.getElementById('_tp_seqdvlmrmssknccfxamq_ind_13').style.textDecoration = 'underline';document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_13').style.opacity = 1;document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_13').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_seqdvlmrmssknccfxamq_ind_13').style.textDecoration = 'none';document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_13').style.opacity = 0;document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_13').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"42.22238349900845%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"42.14616210131891%\" y=\"40\" height=\"20\" width=\"0.07622139768954383%\" onmouseover=\"document.getElementById('_tp_seqdvlmrmssknccfxamq_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_10').style.opacity = 1;document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_seqdvlmrmssknccfxamq_ind_10').style.textDecoration = 'none';document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_10').style.opacity = 0;document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"42.2750600079494%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"42.22238349900845%\" y=\"40\" height=\"20\" width=\"0.052676508940948%\" onmouseover=\"document.getElementById('_tp_seqdvlmrmssknccfxamq_ind_17').style.textDecoration = 'underline';document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_17').style.opacity = 1;document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_17').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_seqdvlmrmssknccfxamq_ind_17').style.textDecoration = 'none';document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_17').style.opacity = 0;document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_17').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"42.31490922858261%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"42.2750600079494%\" y=\"40\" height=\"20\" width=\"0.03984922063320795%\" onmouseover=\"document.getElementById('_tp_seqdvlmrmssknccfxamq_ind_12').style.textDecoration = 'underline';document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_12').style.opacity = 1;document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_12').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_seqdvlmrmssknccfxamq_ind_12').style.textDecoration = 'none';document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_12').style.opacity = 0;document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_12').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"42.34849254279505%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"42.31490922858261%\" y=\"40\" height=\"20\" width=\"0.03358331421244287%\" onmouseover=\"document.getElementById('_tp_seqdvlmrmssknccfxamq_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_3').style.opacity = 1;document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_seqdvlmrmssknccfxamq_ind_3').style.textDecoration = 'none';document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_3').style.opacity = 0;document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"42.34962319100985%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"42.34849254279505%\" y=\"40\" height=\"20\" width=\"0.0011306482147972474%\" onmouseover=\"document.getElementById('_tp_seqdvlmrmssknccfxamq_ind_22').style.textDecoration = 'underline';document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_22').style.opacity = 1;document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_22').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_seqdvlmrmssknccfxamq_ind_22').style.textDecoration = 'none';document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_22').style.opacity = 0;document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_22').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"42.34962319100985%\" y=\"40\" height=\"20\" width=\"0.000646124782171853%\" onmouseover=\"document.getElementById('_tp_seqdvlmrmssknccfxamq_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_0').style.opacity = 1;document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_seqdvlmrmssknccfxamq_ind_0').style.textDecoration = 'none';document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_0').style.opacity = 0;document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_seqdvlmrmssknccfxamq_ind_0'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_0').style.opacity = 1; document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_0').style.opacity = 0; document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.004</div\n",
|
|
" ><div id='_tp_seqdvlmrmssknccfxamq_ind_1'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_1').style.opacity = 1; document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_1').style.opacity = 0; document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_1').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.006</div\n",
|
|
" ><div id='_tp_seqdvlmrmssknccfxamq_ind_2'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_2').style.opacity = 1; document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_2').style.opacity = 0; document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_2').style.opacity = 0;\"\n",
|
|
" >can </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.001</div\n",
|
|
" ><div id='_tp_seqdvlmrmssknccfxamq_ind_3'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_3').style.opacity = 1; document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_3').style.opacity = 0; document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_3').style.opacity = 0;\"\n",
|
|
" >go </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.005</div\n",
|
|
" ><div id='_tp_seqdvlmrmssknccfxamq_ind_4'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_4').style.opacity = 1; document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_4').style.opacity = 0; document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_4').style.opacity = 0;\"\n",
|
|
" >from </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.007</div\n",
|
|
" ><div id='_tp_seqdvlmrmssknccfxamq_ind_5'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_5').style.opacity = 1; document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_5').style.opacity = 0; document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_5').style.opacity = 0;\"\n",
|
|
" >feeling </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.017</div\n",
|
|
" ><div id='_tp_seqdvlmrmssknccfxamq_ind_6'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_6').style.opacity = 1; document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_6').style.opacity = 0; document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_6').style.opacity = 0;\"\n",
|
|
" >so </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.073</div\n",
|
|
" ><div id='_tp_seqdvlmrmssknccfxamq_ind_7'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.07771836007130117); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_7').style.opacity = 1; document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_7').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_7').style.opacity = 0; document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_7').style.opacity = 0;\"\n",
|
|
" >hopeless </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.006</div\n",
|
|
" ><div id='_tp_seqdvlmrmssknccfxamq_ind_8'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_8').style.opacity = 1; document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_8').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_8').style.opacity = 0; document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_8').style.opacity = 0;\"\n",
|
|
" >to </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_seqdvlmrmssknccfxamq_ind_9'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_9').style.opacity = 1; document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_9').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_9').style.opacity = 0; document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_9').style.opacity = 0;\"\n",
|
|
" >so </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.001</div\n",
|
|
" ><div id='_tp_seqdvlmrmssknccfxamq_ind_10'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_10').style.opacity = 1; document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_10').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_10').style.opacity = 0; document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_10').style.opacity = 0;\"\n",
|
|
" >damned </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.045</div\n",
|
|
" ><div id='_tp_seqdvlmrmssknccfxamq_ind_11'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.04618736383442258); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_11').style.opacity = 1; document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_11').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_11').style.opacity = 0; document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_11').style.opacity = 0;\"\n",
|
|
" >hopeful </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.001</div\n",
|
|
" ><div id='_tp_seqdvlmrmssknccfxamq_ind_12'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_12').style.opacity = 1; document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_12').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_12').style.opacity = 0; document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_12').style.opacity = 0;\"\n",
|
|
" >just </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.003</div\n",
|
|
" ><div id='_tp_seqdvlmrmssknccfxamq_ind_13'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_13').style.opacity = 1; document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_13').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_13').style.opacity = 0; document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_13').style.opacity = 0;\"\n",
|
|
" >from </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.005</div\n",
|
|
" ><div id='_tp_seqdvlmrmssknccfxamq_ind_14'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_14').style.opacity = 1; document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_14').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_14').style.opacity = 0; document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_14').style.opacity = 0;\"\n",
|
|
" >being </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.005</div\n",
|
|
" ><div id='_tp_seqdvlmrmssknccfxamq_ind_15'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_15').style.opacity = 1; document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_15').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_15').style.opacity = 0; document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_15').style.opacity = 0;\"\n",
|
|
" >around </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.011</div\n",
|
|
" ><div id='_tp_seqdvlmrmssknccfxamq_ind_16'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_16').style.opacity = 1; document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_16').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_16').style.opacity = 0; document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_16').style.opacity = 0;\"\n",
|
|
" >someone </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.001</div\n",
|
|
" ><div id='_tp_seqdvlmrmssknccfxamq_ind_17'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_17').style.opacity = 1; document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_17').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_17').style.opacity = 0; document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_17').style.opacity = 0;\"\n",
|
|
" >who </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.014</div\n",
|
|
" ><div id='_tp_seqdvlmrmssknccfxamq_ind_18'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_18').style.opacity = 1; document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_18').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_18').style.opacity = 0; document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_18').style.opacity = 0;\"\n",
|
|
" >cares </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_seqdvlmrmssknccfxamq_ind_19'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_19').style.opacity = 1; document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_19').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_19').style.opacity = 0; document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_19').style.opacity = 0;\"\n",
|
|
" >and </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.005</div\n",
|
|
" ><div id='_tp_seqdvlmrmssknccfxamq_ind_20'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_20').style.opacity = 1; document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_20').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_20').style.opacity = 0; document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_20').style.opacity = 0;\"\n",
|
|
" >is </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.005</div\n",
|
|
" ><div id='_tp_seqdvlmrmssknccfxamq_ind_21'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_21').style.opacity = 1; document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_21').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_21').style.opacity = 0; document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_21').style.opacity = 0;\"\n",
|
|
" >awake</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_seqdvlmrmssknccfxamq_ind_22'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_22').style.opacity = 1; document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_22').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_seqdvlmrmssknccfxamq_ind_22').style.opacity = 0; document.getElementById('_fs_seqdvlmrmssknccfxamq_ind_22').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_mqwalcomvemcxolagrxb_output_5_zoom' style='display: none;'><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"48.98557540521563%\" y1=\"33\" x2=\"48.98557540521563%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"48.98557540521563%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.08</text><line x1=\"33.594199933408646%\" y1=\"33\" x2=\"33.594199933408646%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"33.594199933408646%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.04</text><line x1=\"18.20282446160168%\" y1=\"33\" x2=\"18.20282446160168%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"18.20282446160168%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0</text><line x1=\"64.3769508770226%\" y1=\"33\" x2=\"64.3769508770226%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"64.3769508770226%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.12</text><line x1=\"79.76832634882959%\" y1=\"33\" x2=\"79.76832634882959%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"79.76832634882959%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.16</text><line x1=\"81.64033184271639%\" y1=\"33\" x2=\"81.64033184271639%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"81.64033184271639%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.164865</text><text x=\"81.64033184271639%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.164865</text><text x=\"81.64033184271639%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"18.359664309439765%\" y1=\"33\" x2=\"18.359664309439765%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"18.359664309439765%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.000407605</text><text x=\"18.359664309439765%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.000407605</text><text x=\"18.359664309439765%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">surprise</tspan>(inputs)</text><rect x=\"8.334806862129536%\" width=\"10.02485744731023%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"16.110353144160662%\" x2=\"18.359664309439765%\" y1=\"60\" y2=\"60\" id=\"_fb_dpbkoyrmwglpwgkvkwyd_ind_2\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"17.235008726800213%\" y=\"71\" font-size=\"12px\" id=\"_fs_dpbkoyrmwglpwgkvkwyd_ind_2\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.006</text><svg x=\"16.110353144160662%\" y=\"40\" height=\"20\" width=\"2.249311165279103%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">can</text> </svg></svg><line x1=\"14.003954138466634%\" x2=\"16.110353144160662%\" y1=\"60\" y2=\"60\" id=\"_fb_dpbkoyrmwglpwgkvkwyd_ind_14\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"15.057153641313647%\" y=\"71\" font-size=\"12px\" id=\"_fs_dpbkoyrmwglpwgkvkwyd_ind_14\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.005</text><svg x=\"14.003954138466634%\" y=\"40\" height=\"20\" width=\"2.106399005694028%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">being</text> </svg></svg><line x1=\"11.926932524535239%\" x2=\"14.003954138466634%\" y1=\"60\" y2=\"60\" id=\"_fb_dpbkoyrmwglpwgkvkwyd_ind_15\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"12.965443331500936%\" y=\"71\" font-size=\"12px\" id=\"_fs_dpbkoyrmwglpwgkvkwyd_ind_15\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.005</text><svg x=\"11.926932524535239%\" y=\"40\" height=\"20\" width=\"2.077021613931395%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">around</text> </svg></svg><line x1=\"9.85615420240419%\" x2=\"11.926932524535239%\" y1=\"60\" y2=\"60\" id=\"_fb_dpbkoyrmwglpwgkvkwyd_ind_4\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"10.891543363469715%\" y=\"71\" font-size=\"12px\" id=\"_fs_dpbkoyrmwglpwgkvkwyd_ind_4\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.005</text><svg x=\"9.85615420240419%\" y=\"40\" height=\"20\" width=\"2.0707783221310496%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><line x1=\"8.508333647903914%\" x2=\"9.85615420240419%\" y1=\"60\" y2=\"60\" id=\"_fb_dpbkoyrmwglpwgkvkwyd_ind_1\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"9.18224392515405%\" y=\"71\" font-size=\"12px\" id=\"_fs_dpbkoyrmwglpwgkvkwyd_ind_1\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.004</text><svg x=\"8.508333647903914%\" y=\"40\" height=\"20\" width=\"1.3478205545002755%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"8.339021412216665%\" x2=\"8.508333647903914%\" y1=\"60\" y2=\"60\" id=\"_fb_dpbkoyrmwglpwgkvkwyd_ind_9\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.423677530060289%\" y=\"71\" font-size=\"12px\" id=\"_fs_dpbkoyrmwglpwgkvkwyd_ind_9\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"8.339021412216665%\" y=\"40\" height=\"20\" width=\"0.16931223568724896%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><line x1=\"8.334806862129536%\" x2=\"8.339021412216665%\" y1=\"60\" y2=\"60\" id=\"_fb_dpbkoyrmwglpwgkvkwyd_ind_19\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.3369141371731%\" y=\"71\" font-size=\"12px\" id=\"_fs_dpbkoyrmwglpwgkvkwyd_ind_19\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"8.334806862129536%\" y=\"40\" height=\"20\" width=\"0.004214550087128899%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">and</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"16.110353144160662%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"16.110353144160662%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"16.110353144160662%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"16.110353144160662%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"16.110353144160662%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"16.110353144160662%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"16.110353144160662%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"16.110353144160662%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"14.003954138466634%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"14.003954138466634%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"14.003954138466634%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"14.003954138466634%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"14.003954138466634%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"14.003954138466634%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"14.003954138466634%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"14.003954138466634%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"11.926932524535239%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"11.926932524535239%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"11.926932524535239%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"11.926932524535239%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"11.926932524535239%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"11.926932524535239%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"11.926932524535239%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"11.926932524535239%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"9.85615420240419%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"9.85615420240419%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"9.85615420240419%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"9.85615420240419%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"9.85615420240419%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"9.85615420240419%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"9.85615420240419%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"9.85615420240419%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.508333647903914%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.508333647903914%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.508333647903914%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.508333647903914%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.508333647903914%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.508333647903914%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.508333647903914%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.508333647903914%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.339021412216665%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.339021412216665%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.339021412216665%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.339021412216665%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.339021412216665%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.339021412216665%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.339021412216665%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.339021412216665%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"18.359664309439765%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.334806862129536%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"18.359664309439765%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"16.110353144160662%\" y=\"40\" height=\"20\" width=\"2.249311165279103%\" onmouseover=\"document.getElementById('_tp_dpbkoyrmwglpwgkvkwyd_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_2').style.opacity = 1;document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dpbkoyrmwglpwgkvkwyd_ind_2').style.textDecoration = 'none';document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_2').style.opacity = 0;document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"16.110353144160662%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"14.003954138466634%\" y=\"40\" height=\"20\" width=\"2.106399005694028%\" onmouseover=\"document.getElementById('_tp_dpbkoyrmwglpwgkvkwyd_ind_14').style.textDecoration = 'underline';document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_14').style.opacity = 1;document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_14').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dpbkoyrmwglpwgkvkwyd_ind_14').style.textDecoration = 'none';document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_14').style.opacity = 0;document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_14').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"14.003954138466634%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"11.926932524535239%\" y=\"40\" height=\"20\" width=\"2.077021613931395%\" onmouseover=\"document.getElementById('_tp_dpbkoyrmwglpwgkvkwyd_ind_15').style.textDecoration = 'underline';document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_15').style.opacity = 1;document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_15').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dpbkoyrmwglpwgkvkwyd_ind_15').style.textDecoration = 'none';document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_15').style.opacity = 0;document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_15').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"11.926932524535239%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"9.85615420240419%\" y=\"40\" height=\"20\" width=\"2.0707783221310496%\" onmouseover=\"document.getElementById('_tp_dpbkoyrmwglpwgkvkwyd_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_4').style.opacity = 1;document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dpbkoyrmwglpwgkvkwyd_ind_4').style.textDecoration = 'none';document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_4').style.opacity = 0;document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"9.85615420240419%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.508333647903914%\" y=\"40\" height=\"20\" width=\"1.3478205545002755%\" onmouseover=\"document.getElementById('_tp_dpbkoyrmwglpwgkvkwyd_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_1').style.opacity = 1;document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dpbkoyrmwglpwgkvkwyd_ind_1').style.textDecoration = 'none';document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_1').style.opacity = 0;document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"8.508333647903914%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.339021412216665%\" y=\"40\" height=\"20\" width=\"0.16931223568724896%\" onmouseover=\"document.getElementById('_tp_dpbkoyrmwglpwgkvkwyd_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_9').style.opacity = 1;document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dpbkoyrmwglpwgkvkwyd_ind_9').style.textDecoration = 'none';document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_9').style.opacity = 0;document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"8.334806862129536%\" y=\"40\" height=\"20\" width=\"0.004214550087128899%\" onmouseover=\"document.getElementById('_tp_dpbkoyrmwglpwgkvkwyd_ind_19').style.textDecoration = 'underline';document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_19').style.opacity = 1;document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_19').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dpbkoyrmwglpwgkvkwyd_ind_19').style.textDecoration = 'none';document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_19').style.opacity = 0;document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_19').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"18.359664309439765%\" width=\"73.30552498058687%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"18.359664309439765%\" x2=\"46.484189321903244%\" y1=\"60\" y2=\"60\" id=\"_fb_dpbkoyrmwglpwgkvkwyd_ind_7\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"32.421926815671505%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dpbkoyrmwglpwgkvkwyd_ind_7\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.073</text><svg x=\"18.359664309439765%\" y=\"40\" height=\"20\" width=\"28.12452501246348%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeless</text> </svg></svg><line x1=\"46.484189321903244%\" x2=\"63.70581563153105%\" y1=\"60\" y2=\"60\" id=\"_fb_dpbkoyrmwglpwgkvkwyd_ind_11\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"55.09500247671715%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dpbkoyrmwglpwgkvkwyd_ind_11\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.045</text><svg x=\"46.484189321903244%\" y=\"40\" height=\"20\" width=\"17.22162630962781%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeful</text> </svg></svg><line x1=\"63.70581563153105%\" x2=\"70.22431703567432%\" y1=\"60\" y2=\"60\" id=\"_fb_dpbkoyrmwglpwgkvkwyd_ind_6\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"66.96506633360269%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dpbkoyrmwglpwgkvkwyd_ind_6\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.017</text><svg x=\"63.70581563153105%\" y=\"40\" height=\"20\" width=\"6.518501404143265%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><line x1=\"70.22431703567432%\" x2=\"75.7447335037645%\" y1=\"60\" y2=\"60\" id=\"_fb_dpbkoyrmwglpwgkvkwyd_ind_18\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"72.9845252697194%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dpbkoyrmwglpwgkvkwyd_ind_18\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.014</text><svg x=\"70.22431703567432%\" y=\"40\" height=\"20\" width=\"5.5204164680901755%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">cares</text> </svg></svg><line x1=\"75.7447335037645%\" x2=\"80.1242707693012%\" y1=\"60\" y2=\"60\" id=\"_fb_dpbkoyrmwglpwgkvkwyd_ind_16\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"77.93450213653284%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dpbkoyrmwglpwgkvkwyd_ind_16\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.011</text><svg x=\"75.7447335037645%\" y=\"40\" height=\"20\" width=\"4.379537265536712%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">someone</text> </svg></svg><line x1=\"80.1242707693012%\" x2=\"82.98010150634802%\" y1=\"60\" y2=\"60\" id=\"_fb_dpbkoyrmwglpwgkvkwyd_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"81.5521861378246%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dpbkoyrmwglpwgkvkwyd_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.007</text><svg x=\"80.1242707693012%\" y=\"40\" height=\"20\" width=\"2.8558307370468157%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feeling</text> </svg></svg><line x1=\"82.98010150634802%\" x2=\"85.18472167555039%\" y1=\"60\" y2=\"60\" id=\"_fb_dpbkoyrmwglpwgkvkwyd_ind_8\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"84.0824115909492%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dpbkoyrmwglpwgkvkwyd_ind_8\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.006</text><svg x=\"82.98010150634802%\" y=\"40\" height=\"20\" width=\"2.2046201692023715%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><line x1=\"85.18472167555039%\" x2=\"87.28833394505301%\" y1=\"60\" y2=\"60\" id=\"_fb_dpbkoyrmwglpwgkvkwyd_ind_21\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"86.23652781030171%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dpbkoyrmwglpwgkvkwyd_ind_21\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.005</text><svg x=\"85.18472167555039%\" y=\"40\" height=\"20\" width=\"2.1036122695026194%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">awake</text> </svg></svg><line x1=\"87.28833394505301%\" x2=\"89.09331023593407%\" y1=\"60\" y2=\"60\" id=\"_fb_dpbkoyrmwglpwgkvkwyd_ind_20\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"88.19082209049354%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dpbkoyrmwglpwgkvkwyd_ind_20\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.005</text><svg x=\"87.28833394505301%\" y=\"40\" height=\"20\" width=\"1.8049762908810578%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">is</text> </svg></svg><line x1=\"89.09331023593407%\" x2=\"90.31712234086383%\" y1=\"60\" y2=\"60\" id=\"_fb_dpbkoyrmwglpwgkvkwyd_ind_13\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"89.70521628839896%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dpbkoyrmwglpwgkvkwyd_ind_13\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.003</text><svg x=\"89.09331023593407%\" y=\"40\" height=\"20\" width=\"1.2238121049297632%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><line x1=\"90.31712234086383%\" x2=\"90.82054181728711%\" y1=\"60\" y2=\"60\" id=\"_fb_dpbkoyrmwglpwgkvkwyd_ind_10\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"90.56883207907546%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dpbkoyrmwglpwgkvkwyd_ind_10\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.001</text><svg x=\"90.31712234086383%\" y=\"40\" height=\"20\" width=\"0.5034194764232751%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">damned</text> </svg></svg><line x1=\"90.82054181728711%\" x2=\"91.16845436356277%\" y1=\"60\" y2=\"60\" id=\"_fb_dpbkoyrmwglpwgkvkwyd_ind_17\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"90.99449809042494%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dpbkoyrmwglpwgkvkwyd_ind_17\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.001</text><svg x=\"90.82054181728711%\" y=\"40\" height=\"20\" width=\"0.3479125462756656%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">who</text> </svg></svg><line x1=\"91.16845436356277%\" x2=\"91.43164651688375%\" y1=\"60\" y2=\"60\" id=\"_fb_dpbkoyrmwglpwgkvkwyd_ind_12\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.30005044022326%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dpbkoyrmwglpwgkvkwyd_ind_12\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.001</text><svg x=\"91.16845436356277%\" y=\"40\" height=\"20\" width=\"0.263192153320972%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">just</text> </svg></svg><line x1=\"91.43164651688375%\" x2=\"91.65345423715475%\" y1=\"60\" y2=\"60\" id=\"_fb_dpbkoyrmwglpwgkvkwyd_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.54255037701924%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dpbkoyrmwglpwgkvkwyd_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.001</text><svg x=\"91.43164651688375%\" y=\"40\" height=\"20\" width=\"0.22180772027100204%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">go</text> </svg></svg><line x1=\"91.65345423715475%\" x2=\"91.66092182958369%\" y1=\"60\" y2=\"60\" id=\"_fb_dpbkoyrmwglpwgkvkwyd_ind_22\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.65718803336921%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dpbkoyrmwglpwgkvkwyd_ind_22\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"91.65345423715475%\" y=\"40\" height=\"20\" width=\"0.007467592428938019%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><line x1=\"91.66092182958369%\" x2=\"91.66518929002663%\" y1=\"60\" y2=\"60\" id=\"_fb_dpbkoyrmwglpwgkvkwyd_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.66305555980516%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dpbkoyrmwglpwgkvkwyd_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"91.66092182958369%\" y=\"40\" height=\"20\" width=\"0.004267460442946458%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"46.484189321903244%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"46.484189321903244%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"46.484189321903244%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"46.484189321903244%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"46.484189321903244%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"46.484189321903244%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"46.484189321903244%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"46.484189321903244%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"63.70581563153105%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"63.70581563153105%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"63.70581563153105%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"63.70581563153105%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"63.70581563153105%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"63.70581563153105%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"63.70581563153105%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"63.70581563153105%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"70.22431703567432%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"70.22431703567432%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"70.22431703567432%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"70.22431703567432%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"70.22431703567432%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"70.22431703567432%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"70.22431703567432%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"70.22431703567432%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"75.7447335037645%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"75.7447335037645%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"75.7447335037645%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"75.7447335037645%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"75.7447335037645%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"75.7447335037645%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"75.7447335037645%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"75.7447335037645%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"80.1242707693012%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"80.1242707693012%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"80.1242707693012%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"80.1242707693012%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"80.1242707693012%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"80.1242707693012%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"80.1242707693012%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"80.1242707693012%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"82.98010150634802%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"82.98010150634802%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"82.98010150634802%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"82.98010150634802%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"82.98010150634802%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"82.98010150634802%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"82.98010150634802%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"82.98010150634802%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"85.18472167555039%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"85.18472167555039%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"85.18472167555039%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"85.18472167555039%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"85.18472167555039%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"85.18472167555039%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"85.18472167555039%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"85.18472167555039%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"87.28833394505301%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"87.28833394505301%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"87.28833394505301%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"87.28833394505301%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"87.28833394505301%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"87.28833394505301%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"87.28833394505301%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"87.28833394505301%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"89.09331023593407%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"89.09331023593407%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"89.09331023593407%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"89.09331023593407%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"89.09331023593407%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"89.09331023593407%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"89.09331023593407%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"89.09331023593407%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"90.31712234086383%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.31712234086383%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.31712234086383%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.31712234086383%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.31712234086383%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.31712234086383%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.31712234086383%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.31712234086383%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"90.82054181728711%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.82054181728711%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.82054181728711%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.82054181728711%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.82054181728711%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.82054181728711%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.82054181728711%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.82054181728711%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.16845436356277%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.16845436356277%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.16845436356277%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.16845436356277%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.16845436356277%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.16845436356277%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.16845436356277%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.16845436356277%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.43164651688375%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.43164651688375%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.43164651688375%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.43164651688375%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.43164651688375%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.43164651688375%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.43164651688375%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.43164651688375%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.65345423715475%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.65345423715475%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.65345423715475%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.65345423715475%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.65345423715475%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.65345423715475%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.65345423715475%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.65345423715475%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.66092182958369%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.66092182958369%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.66092182958369%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.66092182958369%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.66092182958369%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.66092182958369%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.66092182958369%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.66092182958369%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"18.359664309439765%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66518929002663%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"46.484189321903244%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"18.359664309439765%\" y=\"40\" height=\"20\" width=\"28.12452501246348%\" onmouseover=\"document.getElementById('_tp_dpbkoyrmwglpwgkvkwyd_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_7').style.opacity = 1;document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dpbkoyrmwglpwgkvkwyd_ind_7').style.textDecoration = 'none';document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_7').style.opacity = 0;document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"63.70581563153105%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"46.484189321903244%\" y=\"40\" height=\"20\" width=\"17.22162630962781%\" onmouseover=\"document.getElementById('_tp_dpbkoyrmwglpwgkvkwyd_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_11').style.opacity = 1;document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dpbkoyrmwglpwgkvkwyd_ind_11').style.textDecoration = 'none';document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_11').style.opacity = 0;document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"70.22431703567432%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"63.70581563153105%\" y=\"40\" height=\"20\" width=\"6.518501404143265%\" onmouseover=\"document.getElementById('_tp_dpbkoyrmwglpwgkvkwyd_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_6').style.opacity = 1;document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dpbkoyrmwglpwgkvkwyd_ind_6').style.textDecoration = 'none';document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_6').style.opacity = 0;document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"75.7447335037645%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"70.22431703567432%\" y=\"40\" height=\"20\" width=\"5.5204164680901755%\" onmouseover=\"document.getElementById('_tp_dpbkoyrmwglpwgkvkwyd_ind_18').style.textDecoration = 'underline';document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_18').style.opacity = 1;document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_18').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dpbkoyrmwglpwgkvkwyd_ind_18').style.textDecoration = 'none';document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_18').style.opacity = 0;document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_18').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"80.1242707693012%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"75.7447335037645%\" y=\"40\" height=\"20\" width=\"4.379537265536712%\" onmouseover=\"document.getElementById('_tp_dpbkoyrmwglpwgkvkwyd_ind_16').style.textDecoration = 'underline';document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_16').style.opacity = 1;document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_16').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dpbkoyrmwglpwgkvkwyd_ind_16').style.textDecoration = 'none';document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_16').style.opacity = 0;document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_16').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"82.98010150634802%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"80.1242707693012%\" y=\"40\" height=\"20\" width=\"2.8558307370468157%\" onmouseover=\"document.getElementById('_tp_dpbkoyrmwglpwgkvkwyd_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_5').style.opacity = 1;document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dpbkoyrmwglpwgkvkwyd_ind_5').style.textDecoration = 'none';document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_5').style.opacity = 0;document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"85.18472167555039%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"82.98010150634802%\" y=\"40\" height=\"20\" width=\"2.2046201692023715%\" onmouseover=\"document.getElementById('_tp_dpbkoyrmwglpwgkvkwyd_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_8').style.opacity = 1;document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dpbkoyrmwglpwgkvkwyd_ind_8').style.textDecoration = 'none';document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_8').style.opacity = 0;document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"87.28833394505301%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"85.18472167555039%\" y=\"40\" height=\"20\" width=\"2.1036122695026194%\" onmouseover=\"document.getElementById('_tp_dpbkoyrmwglpwgkvkwyd_ind_21').style.textDecoration = 'underline';document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_21').style.opacity = 1;document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_21').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dpbkoyrmwglpwgkvkwyd_ind_21').style.textDecoration = 'none';document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_21').style.opacity = 0;document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_21').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"89.09331023593407%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"87.28833394505301%\" y=\"40\" height=\"20\" width=\"1.8049762908810578%\" onmouseover=\"document.getElementById('_tp_dpbkoyrmwglpwgkvkwyd_ind_20').style.textDecoration = 'underline';document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_20').style.opacity = 1;document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_20').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dpbkoyrmwglpwgkvkwyd_ind_20').style.textDecoration = 'none';document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_20').style.opacity = 0;document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_20').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"90.31712234086383%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"89.09331023593407%\" y=\"40\" height=\"20\" width=\"1.2238121049297632%\" onmouseover=\"document.getElementById('_tp_dpbkoyrmwglpwgkvkwyd_ind_13').style.textDecoration = 'underline';document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_13').style.opacity = 1;document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_13').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dpbkoyrmwglpwgkvkwyd_ind_13').style.textDecoration = 'none';document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_13').style.opacity = 0;document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_13').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"90.82054181728711%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"90.31712234086383%\" y=\"40\" height=\"20\" width=\"0.5034194764232751%\" onmouseover=\"document.getElementById('_tp_dpbkoyrmwglpwgkvkwyd_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_10').style.opacity = 1;document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dpbkoyrmwglpwgkvkwyd_ind_10').style.textDecoration = 'none';document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_10').style.opacity = 0;document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.16845436356277%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"90.82054181728711%\" y=\"40\" height=\"20\" width=\"0.3479125462756656%\" onmouseover=\"document.getElementById('_tp_dpbkoyrmwglpwgkvkwyd_ind_17').style.textDecoration = 'underline';document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_17').style.opacity = 1;document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_17').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dpbkoyrmwglpwgkvkwyd_ind_17').style.textDecoration = 'none';document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_17').style.opacity = 0;document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_17').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.43164651688375%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.16845436356277%\" y=\"40\" height=\"20\" width=\"0.263192153320972%\" onmouseover=\"document.getElementById('_tp_dpbkoyrmwglpwgkvkwyd_ind_12').style.textDecoration = 'underline';document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_12').style.opacity = 1;document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_12').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dpbkoyrmwglpwgkvkwyd_ind_12').style.textDecoration = 'none';document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_12').style.opacity = 0;document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_12').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.65345423715475%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.43164651688375%\" y=\"40\" height=\"20\" width=\"0.22180772027100204%\" onmouseover=\"document.getElementById('_tp_dpbkoyrmwglpwgkvkwyd_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_3').style.opacity = 1;document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dpbkoyrmwglpwgkvkwyd_ind_3').style.textDecoration = 'none';document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_3').style.opacity = 0;document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66092182958369%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.65345423715475%\" y=\"40\" height=\"20\" width=\"0.007467592428938019%\" onmouseover=\"document.getElementById('_tp_dpbkoyrmwglpwgkvkwyd_ind_22').style.textDecoration = 'underline';document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_22').style.opacity = 1;document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_22').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dpbkoyrmwglpwgkvkwyd_ind_22').style.textDecoration = 'none';document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_22').style.opacity = 0;document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_22').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"91.66092182958369%\" y=\"40\" height=\"20\" width=\"0.004267460442946458%\" onmouseover=\"document.getElementById('_tp_dpbkoyrmwglpwgkvkwyd_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_0').style.opacity = 1;document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dpbkoyrmwglpwgkvkwyd_ind_0').style.textDecoration = 'none';document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_0').style.opacity = 0;document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_dpbkoyrmwglpwgkvkwyd_ind_0'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_0').style.opacity = 1; document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_0').style.opacity = 0; document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.004</div\n",
|
|
" ><div id='_tp_dpbkoyrmwglpwgkvkwyd_ind_1'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.04618736383442265); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_1').style.opacity = 1; document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_1').style.opacity = 0; document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_1').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.006</div\n",
|
|
" ><div id='_tp_dpbkoyrmwglpwgkvkwyd_ind_2'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.07771836007130124); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_2').style.opacity = 1; document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_2').style.opacity = 0; document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_2').style.opacity = 0;\"\n",
|
|
" >can </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.001</div\n",
|
|
" ><div id='_tp_dpbkoyrmwglpwgkvkwyd_ind_3'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_3').style.opacity = 1; document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_3').style.opacity = 0; document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_3').style.opacity = 0;\"\n",
|
|
" >go </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.005</div\n",
|
|
" ><div id='_tp_dpbkoyrmwglpwgkvkwyd_ind_4'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.06983561101208159); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_4').style.opacity = 1; document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_4').style.opacity = 0; document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_4').style.opacity = 0;\"\n",
|
|
" >from </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.007</div\n",
|
|
" ><div id='_tp_dpbkoyrmwglpwgkvkwyd_ind_5'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.09348385818974048); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_5').style.opacity = 1; document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_5').style.opacity = 0; document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_5').style.opacity = 0;\"\n",
|
|
" >feeling </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.017</div\n",
|
|
" ><div id='_tp_dpbkoyrmwglpwgkvkwyd_ind_6'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.22749059219647463); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_6').style.opacity = 1; document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_6').style.opacity = 0; document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_6').style.opacity = 0;\"\n",
|
|
" >so </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.073</div\n",
|
|
" ><div id='_tp_dpbkoyrmwglpwgkvkwyd_ind_7'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 1.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_7').style.opacity = 1; document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_7').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_7').style.opacity = 0; document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_7').style.opacity = 0;\"\n",
|
|
" >hopeless </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.006</div\n",
|
|
" ><div id='_tp_dpbkoyrmwglpwgkvkwyd_ind_8'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.07771836007130117); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_8').style.opacity = 1; document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_8').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_8').style.opacity = 0; document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_8').style.opacity = 0;\"\n",
|
|
" >to </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_dpbkoyrmwglpwgkvkwyd_ind_9'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_9').style.opacity = 1; document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_9').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_9').style.opacity = 0; document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_9').style.opacity = 0;\"\n",
|
|
" >so </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.001</div\n",
|
|
" ><div id='_tp_dpbkoyrmwglpwgkvkwyd_ind_10'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_10').style.opacity = 1; document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_10').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_10').style.opacity = 0; document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_10').style.opacity = 0;\"\n",
|
|
" >damned </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.045</div\n",
|
|
" ><div id='_tp_dpbkoyrmwglpwgkvkwyd_ind_11'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.6137452960982374); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_11').style.opacity = 1; document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_11').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_11').style.opacity = 0; document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_11').style.opacity = 0;\"\n",
|
|
" >hopeful </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.001</div\n",
|
|
" ><div id='_tp_dpbkoyrmwglpwgkvkwyd_ind_12'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_12').style.opacity = 1; document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_12').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_12').style.opacity = 0; document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_12').style.opacity = 0;\"\n",
|
|
" >just </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.003</div\n",
|
|
" ><div id='_tp_dpbkoyrmwglpwgkvkwyd_ind_13'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03830461477520309); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_13').style.opacity = 1; document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_13').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_13').style.opacity = 0; document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_13').style.opacity = 0;\"\n",
|
|
" >from </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.005</div\n",
|
|
" ><div id='_tp_dpbkoyrmwglpwgkvkwyd_ind_14'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.06983561101208159); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_14').style.opacity = 1; document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_14').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_14').style.opacity = 0; document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_14').style.opacity = 0;\"\n",
|
|
" >being </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.005</div\n",
|
|
" ><div id='_tp_dpbkoyrmwglpwgkvkwyd_ind_15'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.06983561101208159); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_15').style.opacity = 1; document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_15').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_15').style.opacity = 0; document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_15').style.opacity = 0;\"\n",
|
|
" >around </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.011</div\n",
|
|
" ><div id='_tp_dpbkoyrmwglpwgkvkwyd_ind_16'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.14866310160427798); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_16').style.opacity = 1; document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_16').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_16').style.opacity = 0; document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_16').style.opacity = 0;\"\n",
|
|
" >someone </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.001</div\n",
|
|
" ><div id='_tp_dpbkoyrmwglpwgkvkwyd_ind_17'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_17').style.opacity = 1; document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_17').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_17').style.opacity = 0; document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_17').style.opacity = 0;\"\n",
|
|
" >who </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.014</div\n",
|
|
" ><div id='_tp_dpbkoyrmwglpwgkvkwyd_ind_18'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.1959595959595959); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_18').style.opacity = 1; document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_18').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_18').style.opacity = 0; document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_18').style.opacity = 0;\"\n",
|
|
" >cares </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_dpbkoyrmwglpwgkvkwyd_ind_19'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_19').style.opacity = 1; document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_19').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_19').style.opacity = 0; document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_19').style.opacity = 0;\"\n",
|
|
" >and </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.005</div\n",
|
|
" ><div id='_tp_dpbkoyrmwglpwgkvkwyd_ind_20'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.06195286195286191); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_20').style.opacity = 1; document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_20').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_20').style.opacity = 0; document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_20').style.opacity = 0;\"\n",
|
|
" >is </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.005</div\n",
|
|
" ><div id='_tp_dpbkoyrmwglpwgkvkwyd_ind_21'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.06983561101208147); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_21').style.opacity = 1; document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_21').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_21').style.opacity = 0; document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_21').style.opacity = 0;\"\n",
|
|
" >awake</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_dpbkoyrmwglpwgkvkwyd_ind_22'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_22').style.opacity = 1; document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_22').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dpbkoyrmwglpwgkvkwyd_ind_22').style.opacity = 0; document.getElementById('_fs_dpbkoyrmwglpwgkvkwyd_ind_22').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div></div>"
|
|
],
|
|
"text/plain": [
|
|
"<IPython.core.display.HTML object>"
|
|
]
|
|
},
|
|
"metadata": {},
|
|
"output_type": "display_data"
|
|
},
|
|
{
|
|
"data": {
|
|
"text/html": [
|
|
"\n",
|
|
"<br>\n",
|
|
"<hr style=\"height: 1px; background-color: #fff; border: none; margin-top: 18px; margin-bottom: 18px; border-top: 1px dashed #ccc;\"\">\n",
|
|
"<div align=\"center\" style=\"margin-top: -35px;\"><div style=\"display: inline-block; background: #fff; padding: 5px; color: #999; font-family: monospace\">[2]</div>\n",
|
|
"</div>\n",
|
|
" "
|
|
],
|
|
"text/plain": [
|
|
"<IPython.core.display.HTML object>"
|
|
]
|
|
},
|
|
"metadata": {},
|
|
"output_type": "display_data"
|
|
},
|
|
{
|
|
"data": {
|
|
"text/html": [
|
|
"<div align='center'>\n",
|
|
"<script>\n",
|
|
" document._hover_unvxfbqcaujtzhoysnxx = '_tp_unvxfbqcaujtzhoysnxx_output_0';\n",
|
|
" document._zoom_unvxfbqcaujtzhoysnxx = undefined;\n",
|
|
" function _output_onclick_unvxfbqcaujtzhoysnxx(i) {\n",
|
|
" var next_id = undefined;\n",
|
|
" \n",
|
|
" if (document._zoom_unvxfbqcaujtzhoysnxx !== undefined) {\n",
|
|
" document.getElementById(document._zoom_unvxfbqcaujtzhoysnxx+ '_zoom').style.display = 'none';\n",
|
|
" \n",
|
|
" if (document._zoom_unvxfbqcaujtzhoysnxx === '_tp_unvxfbqcaujtzhoysnxx_output_' + i) {\n",
|
|
" document.getElementById(document._zoom_unvxfbqcaujtzhoysnxx).style.display = 'block';\n",
|
|
" document.getElementById(document._zoom_unvxfbqcaujtzhoysnxx+'_name').style.background = '#dddddd';\n",
|
|
" } else {\n",
|
|
" document.getElementById(document._zoom_unvxfbqcaujtzhoysnxx).style.display = 'none';\n",
|
|
" document.getElementById(document._zoom_unvxfbqcaujtzhoysnxx+'_name').style.background = '#ffffff';\n",
|
|
" }\n",
|
|
" }\n",
|
|
" if (document._zoom_unvxfbqcaujtzhoysnxx !== '_tp_unvxfbqcaujtzhoysnxx_output_' + i) {\n",
|
|
" next_id = '_tp_unvxfbqcaujtzhoysnxx_output_' + i;\n",
|
|
" document.getElementById(next_id).style.display = 'none';\n",
|
|
" document.getElementById(next_id + '_zoom').style.display = 'block';\n",
|
|
" document.getElementById(next_id+'_name').style.background = '#bbbbbb';\n",
|
|
" }\n",
|
|
" document._zoom_unvxfbqcaujtzhoysnxx = next_id;\n",
|
|
" }\n",
|
|
" function _output_onmouseover_unvxfbqcaujtzhoysnxx(i, el) {\n",
|
|
" if (document._zoom_unvxfbqcaujtzhoysnxx !== undefined) { return; }\n",
|
|
" if (document._hover_unvxfbqcaujtzhoysnxx !== undefined) {\n",
|
|
" document.getElementById(document._hover_unvxfbqcaujtzhoysnxx + '_name').style.background = '#ffffff';\n",
|
|
" document.getElementById(document._hover_unvxfbqcaujtzhoysnxx).style.display = 'none';\n",
|
|
" }\n",
|
|
" document.getElementById('_tp_unvxfbqcaujtzhoysnxx_output_' + i).style.display = 'block';\n",
|
|
" el.style.background = '#dddddd';\n",
|
|
" document._hover_unvxfbqcaujtzhoysnxx = '_tp_unvxfbqcaujtzhoysnxx_output_' + i;\n",
|
|
" }\n",
|
|
"</script>\n",
|
|
"<div style=\"color: rgb(120,120,120); font-size: 12px;\">outputs</div>\n",
|
|
"<div style=\"display: inline; background: #dddddd; border-radius: 3px; padding: 0px\" id=\"_tp_unvxfbqcaujtzhoysnxx_output_0_name\"\n",
|
|
" onclick=\"_output_onclick_unvxfbqcaujtzhoysnxx(0)\"\n",
|
|
" onmouseover=\"_output_onmouseover_unvxfbqcaujtzhoysnxx(0, this);\">sadness</div>\n",
|
|
"<div style=\"display: inline; background: #ffffff; border-radius: 3px; padding: 0px\" id=\"_tp_unvxfbqcaujtzhoysnxx_output_1_name\"\n",
|
|
" onclick=\"_output_onclick_unvxfbqcaujtzhoysnxx(1)\"\n",
|
|
" onmouseover=\"_output_onmouseover_unvxfbqcaujtzhoysnxx(1, this);\">joy</div>\n",
|
|
"<div style=\"display: inline; background: #ffffff; border-radius: 3px; padding: 0px\" id=\"_tp_unvxfbqcaujtzhoysnxx_output_2_name\"\n",
|
|
" onclick=\"_output_onclick_unvxfbqcaujtzhoysnxx(2)\"\n",
|
|
" onmouseover=\"_output_onmouseover_unvxfbqcaujtzhoysnxx(2, this);\">love</div>\n",
|
|
"<div style=\"display: inline; background: #ffffff; border-radius: 3px; padding: 0px\" id=\"_tp_unvxfbqcaujtzhoysnxx_output_3_name\"\n",
|
|
" onclick=\"_output_onclick_unvxfbqcaujtzhoysnxx(3)\"\n",
|
|
" onmouseover=\"_output_onmouseover_unvxfbqcaujtzhoysnxx(3, this);\">anger</div>\n",
|
|
"<div style=\"display: inline; background: #ffffff; border-radius: 3px; padding: 0px\" id=\"_tp_unvxfbqcaujtzhoysnxx_output_4_name\"\n",
|
|
" onclick=\"_output_onclick_unvxfbqcaujtzhoysnxx(4)\"\n",
|
|
" onmouseover=\"_output_onmouseover_unvxfbqcaujtzhoysnxx(4, this);\">fear</div>\n",
|
|
"<div style=\"display: inline; background: #ffffff; border-radius: 3px; padding: 0px\" id=\"_tp_unvxfbqcaujtzhoysnxx_output_5_name\"\n",
|
|
" onclick=\"_output_onclick_unvxfbqcaujtzhoysnxx(5)\"\n",
|
|
" onmouseover=\"_output_onmouseover_unvxfbqcaujtzhoysnxx(5, this);\">surprise</div><br><br><div id='_tp_unvxfbqcaujtzhoysnxx_output_0' style='display: block';><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"48.705281698548966%\" y1=\"33\" x2=\"48.705281698548966%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"48.705281698548966%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.3</text><line x1=\"37.053446541506865%\" y1=\"33\" x2=\"37.053446541506865%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"37.053446541506865%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.1</text><line x1=\"25.40161138446477%\" y1=\"33\" x2=\"25.40161138446477%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"25.40161138446477%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.1</text><line x1=\"13.749776227422668%\" y1=\"33\" x2=\"13.749776227422668%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"13.749776227422668%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.3</text><line x1=\"60.357116855591066%\" y1=\"33\" x2=\"60.357116855591066%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"60.357116855591066%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.5</text><line x1=\"72.00895201263315%\" y1=\"33\" x2=\"72.00895201263315%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"72.00895201263315%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.7</text><line x1=\"83.66078716967526%\" y1=\"33\" x2=\"83.66078716967526%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"83.66078716967526%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.9</text><line x1=\"40.11846374584509%\" y1=\"33\" x2=\"40.11846374584509%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"40.11846374584509%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.15261</text><text x=\"40.11846374584509%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.15261</text><text x=\"40.11846374584509%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"31.360199314637384%\" y1=\"33\" x2=\"31.360199314637384%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"31.360199314637384%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.00227724</text><text x=\"31.360199314637384%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.00227724</text><text x=\"31.360199314637384%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">sadness</tspan>(inputs)</text><rect x=\"31.359723750147253%\" width=\"0.0004755644901290304%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"31.3597238696846%\" x2=\"31.360199314637384%\" y1=\"60\" y2=\"60\" id=\"_fb_dzmvqiedauijdcpqrrcx_ind_7\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"31.359961592160992%\" y=\"71\" font-size=\"12px\" id=\"_fs_dzmvqiedauijdcpqrrcx_ind_7\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"31.3597238696846%\" y=\"40\" height=\"20\" width=\"0.00047544495278373233%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"31.359723778971862%\" x2=\"31.3597238696846%\" y1=\"60\" y2=\"60\" id=\"_fb_dzmvqiedauijdcpqrrcx_ind_0\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"31.35972382432823%\" y=\"71\" font-size=\"12px\" id=\"_fs_dzmvqiedauijdcpqrrcx_ind_0\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"31.359723778971862%\" y=\"40\" height=\"20\" width=\"9.071273865401963e-08%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><line x1=\"31.359723750147253%\" x2=\"31.359723778971862%\" y1=\"60\" y2=\"60\" id=\"_fb_dzmvqiedauijdcpqrrcx_ind_11\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"31.359723764559558%\" y=\"71\" font-size=\"12px\" id=\"_fs_dzmvqiedauijdcpqrrcx_ind_11\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"31.359723750147253%\" y=\"40\" height=\"20\" width=\"2.8824608477862057e-08%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"31.3597238696846%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"31.3597238696846%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"31.3597238696846%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"31.3597238696846%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"31.3597238696846%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"31.3597238696846%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"31.3597238696846%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"31.3597238696846%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"31.359723778971862%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"31.359723778971862%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"31.359723778971862%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"31.359723778971862%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"31.359723778971862%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"31.359723778971862%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"31.359723778971862%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"31.359723778971862%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"31.360199314637384%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"31.359723750147253%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"31.360199314637384%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"31.3597238696846%\" y=\"40\" height=\"20\" width=\"0.00047544495278373233%\" onmouseover=\"document.getElementById('_tp_dzmvqiedauijdcpqrrcx_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_dzmvqiedauijdcpqrrcx_ind_7').style.opacity = 1;document.getElementById('_fb_dzmvqiedauijdcpqrrcx_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dzmvqiedauijdcpqrrcx_ind_7').style.textDecoration = 'none';document.getElementById('_fs_dzmvqiedauijdcpqrrcx_ind_7').style.opacity = 0;document.getElementById('_fb_dzmvqiedauijdcpqrrcx_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"31.3597238696846%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"31.359723778971862%\" y=\"40\" height=\"20\" width=\"9.071273865401963e-08%\" onmouseover=\"document.getElementById('_tp_dzmvqiedauijdcpqrrcx_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_dzmvqiedauijdcpqrrcx_ind_0').style.opacity = 1;document.getElementById('_fb_dzmvqiedauijdcpqrrcx_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dzmvqiedauijdcpqrrcx_ind_0').style.textDecoration = 'none';document.getElementById('_fs_dzmvqiedauijdcpqrrcx_ind_0').style.opacity = 0;document.getElementById('_fb_dzmvqiedauijdcpqrrcx_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"31.359723750147253%\" y=\"40\" height=\"20\" width=\"2.8824608477862057e-08%\" onmouseover=\"document.getElementById('_tp_dzmvqiedauijdcpqrrcx_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_dzmvqiedauijdcpqrrcx_ind_11').style.opacity = 1;document.getElementById('_fb_dzmvqiedauijdcpqrrcx_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dzmvqiedauijdcpqrrcx_ind_11').style.textDecoration = 'none';document.getElementById('_fs_dzmvqiedauijdcpqrrcx_ind_11').style.opacity = 0;document.getElementById('_fb_dzmvqiedauijdcpqrrcx_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"31.360199314637384%\" width=\"8.75873999569783%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"31.360199314637384%\" x2=\"37.02960930488919%\" y1=\"60\" y2=\"60\" id=\"_fb_dzmvqiedauijdcpqrrcx_ind_9\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"34.19490430976329%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dzmvqiedauijdcpqrrcx_ind_9\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.097</text><svg x=\"31.360199314637384%\" y=\"40\" height=\"20\" width=\"5.669409990251808%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">greedy</text> </svg></svg><line x1=\"37.02960930488919%\" x2=\"38.16202814413585%\" y1=\"60\" y2=\"60\" id=\"_fb_dzmvqiedauijdcpqrrcx_ind_8\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"37.595818724512526%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dzmvqiedauijdcpqrrcx_ind_8\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.019</text><svg x=\"37.02960930488919%\" y=\"40\" height=\"20\" width=\"1.132418839246661%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"38.16202814413585%\" x2=\"38.93146148868221%\" y1=\"60\" y2=\"60\" id=\"_fb_dzmvqiedauijdcpqrrcx_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"38.54674481640903%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dzmvqiedauijdcpqrrcx_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.013</text><svg x=\"38.16202814413585%\" y=\"40\" height=\"20\" width=\"0.769433344546357%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">grabbing</text> </svg></svg><line x1=\"38.93146148868221%\" x2=\"39.31979543688586%\" y1=\"60\" y2=\"60\" id=\"_fb_dzmvqiedauijdcpqrrcx_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"39.125628462784036%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dzmvqiedauijdcpqrrcx_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.007</text><svg x=\"38.93146148868221%\" y=\"40\" height=\"20\" width=\"0.38833394820365186%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">im</text> </svg></svg><line x1=\"39.31979543688586%\" x2=\"39.620273962118034%\" y1=\"60\" y2=\"60\" id=\"_fb_dzmvqiedauijdcpqrrcx_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"39.47003469950195%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dzmvqiedauijdcpqrrcx_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.005</text><svg x=\"39.31979543688586%\" y=\"40\" height=\"20\" width=\"0.30047852523217244%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">a</text> </svg></svg><line x1=\"39.620273962118034%\" x2=\"39.90872949835749%\" y1=\"60\" y2=\"60\" id=\"_fb_dzmvqiedauijdcpqrrcx_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"39.76450173023776%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dzmvqiedauijdcpqrrcx_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.005</text><svg x=\"39.620273962118034%\" y=\"40\" height=\"20\" width=\"0.28845553623945364%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><line x1=\"39.90872949835749%\" x2=\"40.06624980226437%\" y1=\"60\" y2=\"60\" id=\"_fb_dzmvqiedauijdcpqrrcx_ind_6\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"39.987489650310934%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dzmvqiedauijdcpqrrcx_ind_6\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.003</text><svg x=\"39.90872949835749%\" y=\"40\" height=\"20\" width=\"0.15752030390688532%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">post</text> </svg></svg><line x1=\"40.06624980226437%\" x2=\"40.11676028357569%\" y1=\"60\" y2=\"60\" id=\"_fb_dzmvqiedauijdcpqrrcx_ind_10\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"40.09150504292003%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dzmvqiedauijdcpqrrcx_ind_10\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.001</text><svg x=\"40.06624980226437%\" y=\"40\" height=\"20\" width=\"0.050510481311313526%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">wrong</text> </svg></svg><line x1=\"40.11676028357569%\" x2=\"40.11893931033522%\" y1=\"60\" y2=\"60\" id=\"_fb_dzmvqiedauijdcpqrrcx_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"40.117849796955454%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dzmvqiedauijdcpqrrcx_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"40.11676028357569%\" y=\"40\" height=\"20\" width=\"0.0021790267595349633%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">minute</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"37.02960930488919%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"37.02960930488919%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"37.02960930488919%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"37.02960930488919%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"37.02960930488919%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"37.02960930488919%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"37.02960930488919%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"37.02960930488919%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"38.16202814413585%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"38.16202814413585%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"38.16202814413585%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"38.16202814413585%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"38.16202814413585%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"38.16202814413585%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"38.16202814413585%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"38.16202814413585%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"38.93146148868221%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"38.93146148868221%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"38.93146148868221%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"38.93146148868221%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"38.93146148868221%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"38.93146148868221%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"38.93146148868221%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"38.93146148868221%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"39.31979543688586%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"39.31979543688586%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"39.31979543688586%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"39.31979543688586%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"39.31979543688586%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"39.31979543688586%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"39.31979543688586%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"39.31979543688586%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"39.620273962118034%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"39.620273962118034%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"39.620273962118034%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"39.620273962118034%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"39.620273962118034%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"39.620273962118034%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"39.620273962118034%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"39.620273962118034%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"39.90872949835749%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"39.90872949835749%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"39.90872949835749%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"39.90872949835749%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"39.90872949835749%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"39.90872949835749%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"39.90872949835749%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"39.90872949835749%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"40.06624980226437%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"40.06624980226437%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"40.06624980226437%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"40.06624980226437%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"40.06624980226437%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"40.06624980226437%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"40.06624980226437%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"40.06624980226437%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"40.11676028357569%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"40.11676028357569%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"40.11676028357569%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"40.11676028357569%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"40.11676028357569%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"40.11676028357569%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"40.11676028357569%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"40.11676028357569%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"31.360199314637384%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"40.11893931033522%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"37.02960930488919%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"31.360199314637384%\" y=\"40\" height=\"20\" width=\"5.669409990251808%\" onmouseover=\"document.getElementById('_tp_dzmvqiedauijdcpqrrcx_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_dzmvqiedauijdcpqrrcx_ind_9').style.opacity = 1;document.getElementById('_fb_dzmvqiedauijdcpqrrcx_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dzmvqiedauijdcpqrrcx_ind_9').style.textDecoration = 'none';document.getElementById('_fs_dzmvqiedauijdcpqrrcx_ind_9').style.opacity = 0;document.getElementById('_fb_dzmvqiedauijdcpqrrcx_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"38.16202814413585%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"37.02960930488919%\" y=\"40\" height=\"20\" width=\"1.132418839246661%\" onmouseover=\"document.getElementById('_tp_dzmvqiedauijdcpqrrcx_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_dzmvqiedauijdcpqrrcx_ind_8').style.opacity = 1;document.getElementById('_fb_dzmvqiedauijdcpqrrcx_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dzmvqiedauijdcpqrrcx_ind_8').style.textDecoration = 'none';document.getElementById('_fs_dzmvqiedauijdcpqrrcx_ind_8').style.opacity = 0;document.getElementById('_fb_dzmvqiedauijdcpqrrcx_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"38.93146148868221%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"38.16202814413585%\" y=\"40\" height=\"20\" width=\"0.769433344546357%\" onmouseover=\"document.getElementById('_tp_dzmvqiedauijdcpqrrcx_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_dzmvqiedauijdcpqrrcx_ind_2').style.opacity = 1;document.getElementById('_fb_dzmvqiedauijdcpqrrcx_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dzmvqiedauijdcpqrrcx_ind_2').style.textDecoration = 'none';document.getElementById('_fs_dzmvqiedauijdcpqrrcx_ind_2').style.opacity = 0;document.getElementById('_fb_dzmvqiedauijdcpqrrcx_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"39.31979543688586%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"38.93146148868221%\" y=\"40\" height=\"20\" width=\"0.38833394820365186%\" onmouseover=\"document.getElementById('_tp_dzmvqiedauijdcpqrrcx_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_dzmvqiedauijdcpqrrcx_ind_1').style.opacity = 1;document.getElementById('_fb_dzmvqiedauijdcpqrrcx_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dzmvqiedauijdcpqrrcx_ind_1').style.textDecoration = 'none';document.getElementById('_fs_dzmvqiedauijdcpqrrcx_ind_1').style.opacity = 0;document.getElementById('_fb_dzmvqiedauijdcpqrrcx_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"39.620273962118034%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"39.31979543688586%\" y=\"40\" height=\"20\" width=\"0.30047852523217244%\" onmouseover=\"document.getElementById('_tp_dzmvqiedauijdcpqrrcx_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_dzmvqiedauijdcpqrrcx_ind_3').style.opacity = 1;document.getElementById('_fb_dzmvqiedauijdcpqrrcx_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dzmvqiedauijdcpqrrcx_ind_3').style.textDecoration = 'none';document.getElementById('_fs_dzmvqiedauijdcpqrrcx_ind_3').style.opacity = 0;document.getElementById('_fb_dzmvqiedauijdcpqrrcx_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"39.90872949835749%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"39.620273962118034%\" y=\"40\" height=\"20\" width=\"0.28845553623945364%\" onmouseover=\"document.getElementById('_tp_dzmvqiedauijdcpqrrcx_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_dzmvqiedauijdcpqrrcx_ind_5').style.opacity = 1;document.getElementById('_fb_dzmvqiedauijdcpqrrcx_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dzmvqiedauijdcpqrrcx_ind_5').style.textDecoration = 'none';document.getElementById('_fs_dzmvqiedauijdcpqrrcx_ind_5').style.opacity = 0;document.getElementById('_fb_dzmvqiedauijdcpqrrcx_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"40.06624980226437%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"39.90872949835749%\" y=\"40\" height=\"20\" width=\"0.15752030390688532%\" onmouseover=\"document.getElementById('_tp_dzmvqiedauijdcpqrrcx_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_dzmvqiedauijdcpqrrcx_ind_6').style.opacity = 1;document.getElementById('_fb_dzmvqiedauijdcpqrrcx_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dzmvqiedauijdcpqrrcx_ind_6').style.textDecoration = 'none';document.getElementById('_fs_dzmvqiedauijdcpqrrcx_ind_6').style.opacity = 0;document.getElementById('_fb_dzmvqiedauijdcpqrrcx_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"40.11676028357569%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"40.06624980226437%\" y=\"40\" height=\"20\" width=\"0.050510481311313526%\" onmouseover=\"document.getElementById('_tp_dzmvqiedauijdcpqrrcx_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_dzmvqiedauijdcpqrrcx_ind_10').style.opacity = 1;document.getElementById('_fb_dzmvqiedauijdcpqrrcx_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dzmvqiedauijdcpqrrcx_ind_10').style.textDecoration = 'none';document.getElementById('_fs_dzmvqiedauijdcpqrrcx_ind_10').style.opacity = 0;document.getElementById('_fb_dzmvqiedauijdcpqrrcx_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"40.11676028357569%\" y=\"40\" height=\"20\" width=\"0.0021790267595349633%\" onmouseover=\"document.getElementById('_tp_dzmvqiedauijdcpqrrcx_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_dzmvqiedauijdcpqrrcx_ind_4').style.opacity = 1;document.getElementById('_fb_dzmvqiedauijdcpqrrcx_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dzmvqiedauijdcpqrrcx_ind_4').style.textDecoration = 'none';document.getElementById('_fs_dzmvqiedauijdcpqrrcx_ind_4').style.opacity = 0;document.getElementById('_fb_dzmvqiedauijdcpqrrcx_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_dzmvqiedauijdcpqrrcx_ind_0'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dzmvqiedauijdcpqrrcx_ind_0').style.opacity = 1; document.getElementById('_fs_dzmvqiedauijdcpqrrcx_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dzmvqiedauijdcpqrrcx_ind_0').style.opacity = 0; document.getElementById('_fs_dzmvqiedauijdcpqrrcx_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.007</div\n",
|
|
" ><div id='_tp_dzmvqiedauijdcpqrrcx_ind_1'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dzmvqiedauijdcpqrrcx_ind_1').style.opacity = 1; document.getElementById('_fs_dzmvqiedauijdcpqrrcx_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dzmvqiedauijdcpqrrcx_ind_1').style.opacity = 0; document.getElementById('_fs_dzmvqiedauijdcpqrrcx_ind_1').style.opacity = 0;\"\n",
|
|
" >im </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.013</div\n",
|
|
" ><div id='_tp_dzmvqiedauijdcpqrrcx_ind_2'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dzmvqiedauijdcpqrrcx_ind_2').style.opacity = 1; document.getElementById('_fs_dzmvqiedauijdcpqrrcx_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dzmvqiedauijdcpqrrcx_ind_2').style.opacity = 0; document.getElementById('_fs_dzmvqiedauijdcpqrrcx_ind_2').style.opacity = 0;\"\n",
|
|
" >grabbing </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.005</div\n",
|
|
" ><div id='_tp_dzmvqiedauijdcpqrrcx_ind_3'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dzmvqiedauijdcpqrrcx_ind_3').style.opacity = 1; document.getElementById('_fs_dzmvqiedauijdcpqrrcx_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dzmvqiedauijdcpqrrcx_ind_3').style.opacity = 0; document.getElementById('_fs_dzmvqiedauijdcpqrrcx_ind_3').style.opacity = 0;\"\n",
|
|
" >a </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_dzmvqiedauijdcpqrrcx_ind_4'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dzmvqiedauijdcpqrrcx_ind_4').style.opacity = 1; document.getElementById('_fs_dzmvqiedauijdcpqrrcx_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dzmvqiedauijdcpqrrcx_ind_4').style.opacity = 0; document.getElementById('_fs_dzmvqiedauijdcpqrrcx_ind_4').style.opacity = 0;\"\n",
|
|
" >minute </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.005</div\n",
|
|
" ><div id='_tp_dzmvqiedauijdcpqrrcx_ind_5'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dzmvqiedauijdcpqrrcx_ind_5').style.opacity = 1; document.getElementById('_fs_dzmvqiedauijdcpqrrcx_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dzmvqiedauijdcpqrrcx_ind_5').style.opacity = 0; document.getElementById('_fs_dzmvqiedauijdcpqrrcx_ind_5').style.opacity = 0;\"\n",
|
|
" >to </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.003</div\n",
|
|
" ><div id='_tp_dzmvqiedauijdcpqrrcx_ind_6'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dzmvqiedauijdcpqrrcx_ind_6').style.opacity = 1; document.getElementById('_fs_dzmvqiedauijdcpqrrcx_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dzmvqiedauijdcpqrrcx_ind_6').style.opacity = 0; document.getElementById('_fs_dzmvqiedauijdcpqrrcx_ind_6').style.opacity = 0;\"\n",
|
|
" >post </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_dzmvqiedauijdcpqrrcx_ind_7'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dzmvqiedauijdcpqrrcx_ind_7').style.opacity = 1; document.getElementById('_fs_dzmvqiedauijdcpqrrcx_ind_7').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dzmvqiedauijdcpqrrcx_ind_7').style.opacity = 0; document.getElementById('_fs_dzmvqiedauijdcpqrrcx_ind_7').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.019</div\n",
|
|
" ><div id='_tp_dzmvqiedauijdcpqrrcx_ind_8'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dzmvqiedauijdcpqrrcx_ind_8').style.opacity = 1; document.getElementById('_fs_dzmvqiedauijdcpqrrcx_ind_8').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dzmvqiedauijdcpqrrcx_ind_8').style.opacity = 0; document.getElementById('_fs_dzmvqiedauijdcpqrrcx_ind_8').style.opacity = 0;\"\n",
|
|
" >feel </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.097</div\n",
|
|
" ><div id='_tp_dzmvqiedauijdcpqrrcx_ind_9'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.10924935630817977); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dzmvqiedauijdcpqrrcx_ind_9').style.opacity = 1; document.getElementById('_fs_dzmvqiedauijdcpqrrcx_ind_9').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dzmvqiedauijdcpqrrcx_ind_9').style.opacity = 0; document.getElementById('_fs_dzmvqiedauijdcpqrrcx_ind_9').style.opacity = 0;\"\n",
|
|
" >greedy </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.001</div\n",
|
|
" ><div id='_tp_dzmvqiedauijdcpqrrcx_ind_10'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dzmvqiedauijdcpqrrcx_ind_10').style.opacity = 1; document.getElementById('_fs_dzmvqiedauijdcpqrrcx_ind_10').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dzmvqiedauijdcpqrrcx_ind_10').style.opacity = 0; document.getElementById('_fs_dzmvqiedauijdcpqrrcx_ind_10').style.opacity = 0;\"\n",
|
|
" >wrong</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_dzmvqiedauijdcpqrrcx_ind_11'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dzmvqiedauijdcpqrrcx_ind_11').style.opacity = 1; document.getElementById('_fs_dzmvqiedauijdcpqrrcx_ind_11').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dzmvqiedauijdcpqrrcx_ind_11').style.opacity = 0; document.getElementById('_fs_dzmvqiedauijdcpqrrcx_ind_11').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_unvxfbqcaujtzhoysnxx_output_0_zoom' style='display: none;'><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"51.41690005407673%\" y1=\"33\" x2=\"51.41690005407673%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"51.41690005407673%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.08</text><line x1=\"34.788934868215044%\" y1=\"33\" x2=\"34.788934868215044%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"34.788934868215044%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.05</text><line x1=\"18.16096968235336%\" y1=\"33\" x2=\"18.16096968235336%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"18.16096968235336%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.02</text><line x1=\"68.0448652399384%\" y1=\"33\" x2=\"68.0448652399384%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"68.0448652399384%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.11</text><line x1=\"84.67283042580009%\" y1=\"33\" x2=\"84.67283042580009%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"84.67283042580009%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.14</text><line x1=\"91.6621371656808%\" y1=\"33\" x2=\"91.6621371656808%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"91.6621371656808%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.15261</text><text x=\"91.6621371656808%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.15261</text><text x=\"91.6621371656808%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"8.337857291664156%\" y1=\"33\" x2=\"8.337857291664156%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"8.337857291664156%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.00227724</text><text x=\"8.337857291664156%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.00227724</text><text x=\"8.337857291664156%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">sadness</tspan>(inputs)</text><rect x=\"8.333332871445412%\" width=\"0.004524420218743179%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"8.33333400869849%\" x2=\"8.337857291664156%\" y1=\"60\" y2=\"60\" id=\"_fb_ilflftcgpaulhmfibbic_ind_7\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.335595650181322%\" y=\"71\" font-size=\"12px\" id=\"_fs_ilflftcgpaulhmfibbic_ind_7\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"8.33333400869849%\" y=\"40\" height=\"20\" width=\"0.004523282965665842%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"8.33333314567665%\" x2=\"8.33333400869849%\" y1=\"60\" y2=\"60\" id=\"_fb_ilflftcgpaulhmfibbic_ind_0\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.33333357718757%\" y=\"71\" font-size=\"12px\" id=\"_fs_ilflftcgpaulhmfibbic_ind_0\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"8.33333314567665%\" y=\"40\" height=\"20\" width=\"8.630218388816502e-07%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><line x1=\"8.333332871445412%\" x2=\"8.33333314567665%\" y1=\"60\" y2=\"60\" id=\"_fb_ilflftcgpaulhmfibbic_ind_11\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.33333300856103%\" y=\"71\" font-size=\"12px\" id=\"_fs_ilflftcgpaulhmfibbic_ind_11\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"8.333332871445412%\" y=\"40\" height=\"20\" width=\"2.742312386061485e-07%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"8.33333400869849%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.33333400869849%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.33333400869849%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.33333400869849%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.33333400869849%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.33333400869849%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.33333400869849%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.33333400869849%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.33333314567665%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.33333314567665%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.33333314567665%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.33333314567665%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.33333314567665%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.33333314567665%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.33333314567665%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.33333314567665%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"8.337857291664156%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.333332871445412%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"8.337857291664156%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.33333400869849%\" y=\"40\" height=\"20\" width=\"0.004523282965665842%\" onmouseover=\"document.getElementById('_tp_ilflftcgpaulhmfibbic_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_ilflftcgpaulhmfibbic_ind_7').style.opacity = 1;document.getElementById('_fb_ilflftcgpaulhmfibbic_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ilflftcgpaulhmfibbic_ind_7').style.textDecoration = 'none';document.getElementById('_fs_ilflftcgpaulhmfibbic_ind_7').style.opacity = 0;document.getElementById('_fb_ilflftcgpaulhmfibbic_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"8.33333400869849%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.33333314567665%\" y=\"40\" height=\"20\" width=\"8.630218388816502e-07%\" onmouseover=\"document.getElementById('_tp_ilflftcgpaulhmfibbic_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_ilflftcgpaulhmfibbic_ind_0').style.opacity = 1;document.getElementById('_fb_ilflftcgpaulhmfibbic_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ilflftcgpaulhmfibbic_ind_0').style.textDecoration = 'none';document.getElementById('_fs_ilflftcgpaulhmfibbic_ind_0').style.opacity = 0;document.getElementById('_fb_ilflftcgpaulhmfibbic_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"8.333332871445412%\" y=\"40\" height=\"20\" width=\"2.742312386061485e-07%\" onmouseover=\"document.getElementById('_tp_ilflftcgpaulhmfibbic_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_ilflftcgpaulhmfibbic_ind_11').style.opacity = 1;document.getElementById('_fb_ilflftcgpaulhmfibbic_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ilflftcgpaulhmfibbic_ind_11').style.textDecoration = 'none';document.getElementById('_fs_ilflftcgpaulhmfibbic_ind_11').style.opacity = 0;document.getElementById('_fb_ilflftcgpaulhmfibbic_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"8.337857291664156%\" width=\"83.32880429423538%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"8.337857291664156%\" x2=\"62.27542773827226%\" y1=\"60\" y2=\"60\" id=\"_fb_ilflftcgpaulhmfibbic_ind_9\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"35.30664251496821%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_ilflftcgpaulhmfibbic_ind_9\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.097</text><svg x=\"8.337857291664156%\" y=\"40\" height=\"20\" width=\"53.937570446608106%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">greedy</text> </svg></svg><line x1=\"62.27542773827226%\" x2=\"73.04902164345039%\" y1=\"60\" y2=\"60\" id=\"_fb_ilflftcgpaulhmfibbic_ind_8\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"67.66222469086132%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_ilflftcgpaulhmfibbic_ind_8\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.019</text><svg x=\"62.27542773827226%\" y=\"40\" height=\"20\" width=\"10.773593905178124%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"73.04902164345039%\" x2=\"80.369248139117%\" y1=\"60\" y2=\"60\" id=\"_fb_ilflftcgpaulhmfibbic_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"76.7091348912837%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_ilflftcgpaulhmfibbic_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.013</text><svg x=\"73.04902164345039%\" y=\"40\" height=\"20\" width=\"7.320226495666617%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">grabbing</text> </svg></svg><line x1=\"80.369248139117%\" x2=\"84.06377538693624%\" y1=\"60\" y2=\"60\" id=\"_fb_ilflftcgpaulhmfibbic_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"82.21651176302663%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_ilflftcgpaulhmfibbic_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.007</text><svg x=\"80.369248139117%\" y=\"40\" height=\"20\" width=\"3.694527247819238%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">im</text> </svg></svg><line x1=\"84.06377538693624%\" x2=\"86.92246467740392%\" y1=\"60\" y2=\"60\" id=\"_fb_ilflftcgpaulhmfibbic_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"85.49312003217008%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_ilflftcgpaulhmfibbic_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.005</text><svg x=\"84.06377538693624%\" y=\"40\" height=\"20\" width=\"2.85868929046768%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">a</text> </svg></svg><line x1=\"86.92246467740392%\" x2=\"89.66676978735043%\" y1=\"60\" y2=\"60\" id=\"_fb_ilflftcgpaulhmfibbic_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"88.29461723237718%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_ilflftcgpaulhmfibbic_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.005</text><svg x=\"86.92246467740392%\" y=\"40\" height=\"20\" width=\"2.7443051099465094%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><line x1=\"89.66676978735043%\" x2=\"91.16538472318283%\" y1=\"60\" y2=\"60\" id=\"_fb_ilflftcgpaulhmfibbic_ind_6\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"90.41607725526663%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_ilflftcgpaulhmfibbic_ind_6\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.003</text><svg x=\"89.66676978735043%\" y=\"40\" height=\"20\" width=\"1.4986149358323928%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">post</text> </svg></svg><line x1=\"91.16538472318283%\" x2=\"91.64593078506677%\" y1=\"60\" y2=\"60\" id=\"_fb_ilflftcgpaulhmfibbic_ind_10\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.4056577541248%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_ilflftcgpaulhmfibbic_ind_10\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.001</text><svg x=\"91.16538472318283%\" y=\"40\" height=\"20\" width=\"0.4805460618839419%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">wrong</text> </svg></svg><line x1=\"91.64593078506677%\" x2=\"91.66666158589955%\" y1=\"60\" y2=\"60\" id=\"_fb_ilflftcgpaulhmfibbic_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.65629618548316%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_ilflftcgpaulhmfibbic_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"91.64593078506677%\" y=\"40\" height=\"20\" width=\"0.020730800832780005%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">minute</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"62.27542773827226%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"62.27542773827226%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"62.27542773827226%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"62.27542773827226%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"62.27542773827226%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"62.27542773827226%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"62.27542773827226%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"62.27542773827226%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"73.04902164345039%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"73.04902164345039%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"73.04902164345039%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"73.04902164345039%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"73.04902164345039%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"73.04902164345039%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"73.04902164345039%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"73.04902164345039%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"80.369248139117%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"80.369248139117%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"80.369248139117%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"80.369248139117%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"80.369248139117%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"80.369248139117%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"80.369248139117%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"80.369248139117%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"84.06377538693624%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"84.06377538693624%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"84.06377538693624%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"84.06377538693624%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"84.06377538693624%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"84.06377538693624%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"84.06377538693624%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"84.06377538693624%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"86.92246467740392%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"86.92246467740392%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"86.92246467740392%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"86.92246467740392%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"86.92246467740392%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"86.92246467740392%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"86.92246467740392%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"86.92246467740392%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"89.66676978735043%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"89.66676978735043%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"89.66676978735043%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"89.66676978735043%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"89.66676978735043%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"89.66676978735043%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"89.66676978735043%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"89.66676978735043%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.16538472318283%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.16538472318283%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.16538472318283%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.16538472318283%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.16538472318283%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.16538472318283%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.16538472318283%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.16538472318283%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.64593078506677%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.64593078506677%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.64593078506677%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.64593078506677%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.64593078506677%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.64593078506677%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.64593078506677%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.64593078506677%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"8.337857291664156%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66666158589955%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"62.27542773827226%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"8.337857291664156%\" y=\"40\" height=\"20\" width=\"53.937570446608106%\" onmouseover=\"document.getElementById('_tp_ilflftcgpaulhmfibbic_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_ilflftcgpaulhmfibbic_ind_9').style.opacity = 1;document.getElementById('_fb_ilflftcgpaulhmfibbic_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ilflftcgpaulhmfibbic_ind_9').style.textDecoration = 'none';document.getElementById('_fs_ilflftcgpaulhmfibbic_ind_9').style.opacity = 0;document.getElementById('_fb_ilflftcgpaulhmfibbic_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"73.04902164345039%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"62.27542773827226%\" y=\"40\" height=\"20\" width=\"10.773593905178124%\" onmouseover=\"document.getElementById('_tp_ilflftcgpaulhmfibbic_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_ilflftcgpaulhmfibbic_ind_8').style.opacity = 1;document.getElementById('_fb_ilflftcgpaulhmfibbic_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ilflftcgpaulhmfibbic_ind_8').style.textDecoration = 'none';document.getElementById('_fs_ilflftcgpaulhmfibbic_ind_8').style.opacity = 0;document.getElementById('_fb_ilflftcgpaulhmfibbic_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"80.369248139117%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"73.04902164345039%\" y=\"40\" height=\"20\" width=\"7.320226495666617%\" onmouseover=\"document.getElementById('_tp_ilflftcgpaulhmfibbic_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_ilflftcgpaulhmfibbic_ind_2').style.opacity = 1;document.getElementById('_fb_ilflftcgpaulhmfibbic_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ilflftcgpaulhmfibbic_ind_2').style.textDecoration = 'none';document.getElementById('_fs_ilflftcgpaulhmfibbic_ind_2').style.opacity = 0;document.getElementById('_fb_ilflftcgpaulhmfibbic_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"84.06377538693624%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"80.369248139117%\" y=\"40\" height=\"20\" width=\"3.694527247819238%\" onmouseover=\"document.getElementById('_tp_ilflftcgpaulhmfibbic_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_ilflftcgpaulhmfibbic_ind_1').style.opacity = 1;document.getElementById('_fb_ilflftcgpaulhmfibbic_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ilflftcgpaulhmfibbic_ind_1').style.textDecoration = 'none';document.getElementById('_fs_ilflftcgpaulhmfibbic_ind_1').style.opacity = 0;document.getElementById('_fb_ilflftcgpaulhmfibbic_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"86.92246467740392%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"84.06377538693624%\" y=\"40\" height=\"20\" width=\"2.85868929046768%\" onmouseover=\"document.getElementById('_tp_ilflftcgpaulhmfibbic_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_ilflftcgpaulhmfibbic_ind_3').style.opacity = 1;document.getElementById('_fb_ilflftcgpaulhmfibbic_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ilflftcgpaulhmfibbic_ind_3').style.textDecoration = 'none';document.getElementById('_fs_ilflftcgpaulhmfibbic_ind_3').style.opacity = 0;document.getElementById('_fb_ilflftcgpaulhmfibbic_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"89.66676978735043%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"86.92246467740392%\" y=\"40\" height=\"20\" width=\"2.7443051099465094%\" onmouseover=\"document.getElementById('_tp_ilflftcgpaulhmfibbic_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_ilflftcgpaulhmfibbic_ind_5').style.opacity = 1;document.getElementById('_fb_ilflftcgpaulhmfibbic_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ilflftcgpaulhmfibbic_ind_5').style.textDecoration = 'none';document.getElementById('_fs_ilflftcgpaulhmfibbic_ind_5').style.opacity = 0;document.getElementById('_fb_ilflftcgpaulhmfibbic_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.16538472318283%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"89.66676978735043%\" y=\"40\" height=\"20\" width=\"1.4986149358323928%\" onmouseover=\"document.getElementById('_tp_ilflftcgpaulhmfibbic_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_ilflftcgpaulhmfibbic_ind_6').style.opacity = 1;document.getElementById('_fb_ilflftcgpaulhmfibbic_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ilflftcgpaulhmfibbic_ind_6').style.textDecoration = 'none';document.getElementById('_fs_ilflftcgpaulhmfibbic_ind_6').style.opacity = 0;document.getElementById('_fb_ilflftcgpaulhmfibbic_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.64593078506677%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.16538472318283%\" y=\"40\" height=\"20\" width=\"0.4805460618839419%\" onmouseover=\"document.getElementById('_tp_ilflftcgpaulhmfibbic_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_ilflftcgpaulhmfibbic_ind_10').style.opacity = 1;document.getElementById('_fb_ilflftcgpaulhmfibbic_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ilflftcgpaulhmfibbic_ind_10').style.textDecoration = 'none';document.getElementById('_fs_ilflftcgpaulhmfibbic_ind_10').style.opacity = 0;document.getElementById('_fb_ilflftcgpaulhmfibbic_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"91.64593078506677%\" y=\"40\" height=\"20\" width=\"0.020730800832780005%\" onmouseover=\"document.getElementById('_tp_ilflftcgpaulhmfibbic_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_ilflftcgpaulhmfibbic_ind_4').style.opacity = 1;document.getElementById('_fb_ilflftcgpaulhmfibbic_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ilflftcgpaulhmfibbic_ind_4').style.textDecoration = 'none';document.getElementById('_fs_ilflftcgpaulhmfibbic_ind_4').style.opacity = 0;document.getElementById('_fb_ilflftcgpaulhmfibbic_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_ilflftcgpaulhmfibbic_ind_0'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ilflftcgpaulhmfibbic_ind_0').style.opacity = 1; document.getElementById('_fs_ilflftcgpaulhmfibbic_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ilflftcgpaulhmfibbic_ind_0').style.opacity = 0; document.getElementById('_fs_ilflftcgpaulhmfibbic_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.007</div\n",
|
|
" ><div id='_tp_ilflftcgpaulhmfibbic_ind_1'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.06195286195286191); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ilflftcgpaulhmfibbic_ind_1').style.opacity = 1; document.getElementById('_fs_ilflftcgpaulhmfibbic_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ilflftcgpaulhmfibbic_ind_1').style.opacity = 0; document.getElementById('_fs_ilflftcgpaulhmfibbic_ind_1').style.opacity = 0;\"\n",
|
|
" >im </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.013</div\n",
|
|
" ><div id='_tp_ilflftcgpaulhmfibbic_ind_2'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.1328976034858387); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ilflftcgpaulhmfibbic_ind_2').style.opacity = 1; document.getElementById('_fs_ilflftcgpaulhmfibbic_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ilflftcgpaulhmfibbic_ind_2').style.opacity = 0; document.getElementById('_fs_ilflftcgpaulhmfibbic_ind_2').style.opacity = 0;\"\n",
|
|
" >grabbing </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.005</div\n",
|
|
" ><div id='_tp_ilflftcgpaulhmfibbic_ind_3'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.04618736383442258); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ilflftcgpaulhmfibbic_ind_3').style.opacity = 1; document.getElementById('_fs_ilflftcgpaulhmfibbic_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ilflftcgpaulhmfibbic_ind_3').style.opacity = 0; document.getElementById('_fs_ilflftcgpaulhmfibbic_ind_3').style.opacity = 0;\"\n",
|
|
" >a </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_ilflftcgpaulhmfibbic_ind_4'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ilflftcgpaulhmfibbic_ind_4').style.opacity = 1; document.getElementById('_fs_ilflftcgpaulhmfibbic_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ilflftcgpaulhmfibbic_ind_4').style.opacity = 0; document.getElementById('_fs_ilflftcgpaulhmfibbic_ind_4').style.opacity = 0;\"\n",
|
|
" >minute </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.005</div\n",
|
|
" ><div id='_tp_ilflftcgpaulhmfibbic_ind_5'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.04618736383442258); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ilflftcgpaulhmfibbic_ind_5').style.opacity = 1; document.getElementById('_fs_ilflftcgpaulhmfibbic_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ilflftcgpaulhmfibbic_ind_5').style.opacity = 0; document.getElementById('_fs_ilflftcgpaulhmfibbic_ind_5').style.opacity = 0;\"\n",
|
|
" >to </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.003</div\n",
|
|
" ><div id='_tp_ilflftcgpaulhmfibbic_ind_6'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.022539116656763607); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ilflftcgpaulhmfibbic_ind_6').style.opacity = 1; document.getElementById('_fs_ilflftcgpaulhmfibbic_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ilflftcgpaulhmfibbic_ind_6').style.opacity = 0; document.getElementById('_fs_ilflftcgpaulhmfibbic_ind_6').style.opacity = 0;\"\n",
|
|
" >post </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_ilflftcgpaulhmfibbic_ind_7'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ilflftcgpaulhmfibbic_ind_7').style.opacity = 1; document.getElementById('_fs_ilflftcgpaulhmfibbic_ind_7').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ilflftcgpaulhmfibbic_ind_7').style.opacity = 0; document.getElementById('_fs_ilflftcgpaulhmfibbic_ind_7').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.019</div\n",
|
|
" ><div id='_tp_ilflftcgpaulhmfibbic_ind_8'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.1959595959595959); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ilflftcgpaulhmfibbic_ind_8').style.opacity = 1; document.getElementById('_fs_ilflftcgpaulhmfibbic_ind_8').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ilflftcgpaulhmfibbic_ind_8').style.opacity = 0; document.getElementById('_fs_ilflftcgpaulhmfibbic_ind_8').style.opacity = 0;\"\n",
|
|
" >feel </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.097</div\n",
|
|
" ><div id='_tp_ilflftcgpaulhmfibbic_ind_9'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 1.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ilflftcgpaulhmfibbic_ind_9').style.opacity = 1; document.getElementById('_fs_ilflftcgpaulhmfibbic_ind_9').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ilflftcgpaulhmfibbic_ind_9').style.opacity = 0; document.getElementById('_fs_ilflftcgpaulhmfibbic_ind_9').style.opacity = 0;\"\n",
|
|
" >greedy </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.001</div\n",
|
|
" ><div id='_tp_ilflftcgpaulhmfibbic_ind_10'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ilflftcgpaulhmfibbic_ind_10').style.opacity = 1; document.getElementById('_fs_ilflftcgpaulhmfibbic_ind_10').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ilflftcgpaulhmfibbic_ind_10').style.opacity = 0; document.getElementById('_fs_ilflftcgpaulhmfibbic_ind_10').style.opacity = 0;\"\n",
|
|
" >wrong</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_ilflftcgpaulhmfibbic_ind_11'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ilflftcgpaulhmfibbic_ind_11').style.opacity = 1; document.getElementById('_fs_ilflftcgpaulhmfibbic_ind_11').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ilflftcgpaulhmfibbic_ind_11').style.opacity = 0; document.getElementById('_fs_ilflftcgpaulhmfibbic_ind_11').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_unvxfbqcaujtzhoysnxx_output_1' style='display: none';><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"48.705281698548966%\" y1=\"33\" x2=\"48.705281698548966%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"48.705281698548966%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.3</text><line x1=\"37.053446541506865%\" y1=\"33\" x2=\"37.053446541506865%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"37.053446541506865%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.1</text><line x1=\"25.40161138446477%\" y1=\"33\" x2=\"25.40161138446477%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"25.40161138446477%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.1</text><line x1=\"13.749776227422668%\" y1=\"33\" x2=\"13.749776227422668%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"13.749776227422668%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.3</text><line x1=\"60.357116855591066%\" y1=\"33\" x2=\"60.357116855591066%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"60.357116855591066%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.5</text><line x1=\"72.00895201263315%\" y1=\"33\" x2=\"72.00895201263315%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"72.00895201263315%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.7</text><line x1=\"83.66078716967526%\" y1=\"33\" x2=\"83.66078716967526%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"83.66078716967526%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.9</text><line x1=\"47.63174146104604%\" y1=\"33\" x2=\"47.63174146104604%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"47.63174146104604%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.281573</text><text x=\"47.63174146104604%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.281573</text><text x=\"47.63174146104604%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"31.2673319315683%\" y1=\"33\" x2=\"31.2673319315683%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"31.2673319315683%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.000683205</text><text x=\"31.2673319315683%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.000683205</text><text x=\"31.2673319315683%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">joy</tspan>(inputs)</text><rect x=\"21.726128466502022%\" width=\"9.54120346506628%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"24.921376704732353%\" x2=\"31.2673319315683%\" y1=\"60\" y2=\"60\" id=\"_fb_erbvkscploqvwalqhmum_ind_8\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"28.094354318150327%\" y=\"71\" font-size=\"12px\" id=\"_fs_erbvkscploqvwalqhmum_ind_8\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.109</text><svg x=\"24.921376704732353%\" y=\"40\" height=\"20\" width=\"6.345955226835947%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"23.41217031978272%\" x2=\"24.921376704732353%\" y1=\"60\" y2=\"60\" id=\"_fb_erbvkscploqvwalqhmum_ind_5\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"24.166773512257535%\" y=\"71\" font-size=\"12px\" id=\"_fs_erbvkscploqvwalqhmum_ind_5\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.026</text><svg x=\"23.41217031978272%\" y=\"40\" height=\"20\" width=\"1.509206384949632%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><line x1=\"22.59739451574884%\" x2=\"23.41217031978272%\" y1=\"60\" y2=\"60\" id=\"_fb_erbvkscploqvwalqhmum_ind_1\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"23.00478241776578%\" y=\"71\" font-size=\"12px\" id=\"_fs_erbvkscploqvwalqhmum_ind_1\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.014</text><svg x=\"22.59739451574884%\" y=\"40\" height=\"20\" width=\"0.8147758040338822%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">im</text> </svg></svg><line x1=\"22.02078427107904%\" x2=\"22.59739451574884%\" y1=\"60\" y2=\"60\" id=\"_fb_erbvkscploqvwalqhmum_ind_3\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"22.30908939341394%\" y=\"71\" font-size=\"12px\" id=\"_fs_erbvkscploqvwalqhmum_ind_3\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.01</text><svg x=\"22.02078427107904%\" y=\"40\" height=\"20\" width=\"0.5766102446697978%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">a</text> </svg></svg><line x1=\"21.72612922675106%\" x2=\"22.02078427107904%\" y1=\"60\" y2=\"60\" id=\"_fb_erbvkscploqvwalqhmum_ind_7\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"21.87345674891505%\" y=\"71\" font-size=\"12px\" id=\"_fs_erbvkscploqvwalqhmum_ind_7\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.005</text><svg x=\"21.72612922675106%\" y=\"40\" height=\"20\" width=\"0.29465504432798184%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"21.726128466502022%\" x2=\"21.72612922675106%\" y1=\"60\" y2=\"60\" id=\"_fb_erbvkscploqvwalqhmum_ind_0\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"21.72612884662654%\" y=\"71\" font-size=\"12px\" id=\"_fs_erbvkscploqvwalqhmum_ind_0\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"21.726128466502022%\" y=\"40\" height=\"20\" width=\"7.602490370572923e-07%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"24.921376704732353%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"24.921376704732353%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"24.921376704732353%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"24.921376704732353%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"24.921376704732353%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"24.921376704732353%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"24.921376704732353%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"24.921376704732353%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"23.41217031978272%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"23.41217031978272%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"23.41217031978272%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"23.41217031978272%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"23.41217031978272%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"23.41217031978272%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"23.41217031978272%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"23.41217031978272%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"22.59739451574884%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"22.59739451574884%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"22.59739451574884%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"22.59739451574884%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"22.59739451574884%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"22.59739451574884%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"22.59739451574884%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"22.59739451574884%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"22.02078427107904%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"22.02078427107904%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"22.02078427107904%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"22.02078427107904%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"22.02078427107904%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"22.02078427107904%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"22.02078427107904%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"22.02078427107904%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"21.72612922675106%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"21.72612922675106%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"21.72612922675106%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"21.72612922675106%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"21.72612922675106%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"21.72612922675106%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"21.72612922675106%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"21.72612922675106%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"31.2673319315683%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"21.726128466502022%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"31.2673319315683%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"24.921376704732353%\" y=\"40\" height=\"20\" width=\"6.345955226835947%\" onmouseover=\"document.getElementById('_tp_erbvkscploqvwalqhmum_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_erbvkscploqvwalqhmum_ind_8').style.opacity = 1;document.getElementById('_fb_erbvkscploqvwalqhmum_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_erbvkscploqvwalqhmum_ind_8').style.textDecoration = 'none';document.getElementById('_fs_erbvkscploqvwalqhmum_ind_8').style.opacity = 0;document.getElementById('_fb_erbvkscploqvwalqhmum_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"24.921376704732353%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"23.41217031978272%\" y=\"40\" height=\"20\" width=\"1.509206384949632%\" onmouseover=\"document.getElementById('_tp_erbvkscploqvwalqhmum_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_erbvkscploqvwalqhmum_ind_5').style.opacity = 1;document.getElementById('_fb_erbvkscploqvwalqhmum_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_erbvkscploqvwalqhmum_ind_5').style.textDecoration = 'none';document.getElementById('_fs_erbvkscploqvwalqhmum_ind_5').style.opacity = 0;document.getElementById('_fb_erbvkscploqvwalqhmum_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"23.41217031978272%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"22.59739451574884%\" y=\"40\" height=\"20\" width=\"0.8147758040338822%\" onmouseover=\"document.getElementById('_tp_erbvkscploqvwalqhmum_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_erbvkscploqvwalqhmum_ind_1').style.opacity = 1;document.getElementById('_fb_erbvkscploqvwalqhmum_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_erbvkscploqvwalqhmum_ind_1').style.textDecoration = 'none';document.getElementById('_fs_erbvkscploqvwalqhmum_ind_1').style.opacity = 0;document.getElementById('_fb_erbvkscploqvwalqhmum_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"22.59739451574884%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"22.02078427107904%\" y=\"40\" height=\"20\" width=\"0.5766102446697978%\" onmouseover=\"document.getElementById('_tp_erbvkscploqvwalqhmum_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_erbvkscploqvwalqhmum_ind_3').style.opacity = 1;document.getElementById('_fb_erbvkscploqvwalqhmum_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_erbvkscploqvwalqhmum_ind_3').style.textDecoration = 'none';document.getElementById('_fs_erbvkscploqvwalqhmum_ind_3').style.opacity = 0;document.getElementById('_fb_erbvkscploqvwalqhmum_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"22.02078427107904%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"21.72612922675106%\" y=\"40\" height=\"20\" width=\"0.29465504432798184%\" onmouseover=\"document.getElementById('_tp_erbvkscploqvwalqhmum_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_erbvkscploqvwalqhmum_ind_7').style.opacity = 1;document.getElementById('_fb_erbvkscploqvwalqhmum_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_erbvkscploqvwalqhmum_ind_7').style.textDecoration = 'none';document.getElementById('_fs_erbvkscploqvwalqhmum_ind_7').style.opacity = 0;document.getElementById('_fb_erbvkscploqvwalqhmum_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"21.726128466502022%\" y=\"40\" height=\"20\" width=\"7.602490370572923e-07%\" onmouseover=\"document.getElementById('_tp_erbvkscploqvwalqhmum_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_erbvkscploqvwalqhmum_ind_0').style.opacity = 1;document.getElementById('_fb_erbvkscploqvwalqhmum_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_erbvkscploqvwalqhmum_ind_0').style.textDecoration = 'none';document.getElementById('_fs_erbvkscploqvwalqhmum_ind_0').style.opacity = 0;document.getElementById('_fb_erbvkscploqvwalqhmum_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"31.2673319315683%\" width=\"25.905612994544015%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"31.2673319315683%\" x2=\"48.760539925292974%\" y1=\"60\" y2=\"60\" id=\"_fb_erbvkscploqvwalqhmum_ind_9\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"40.01393592843064%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_erbvkscploqvwalqhmum_ind_9\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.3</text><svg x=\"31.2673319315683%\" y=\"40\" height=\"20\" width=\"17.493207993724674%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">greedy</text> </svg></svg><line x1=\"48.760539925292974%\" x2=\"55.995964293137455%\" y1=\"60\" y2=\"60\" id=\"_fb_erbvkscploqvwalqhmum_ind_10\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"52.37825210921521%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_erbvkscploqvwalqhmum_ind_10\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.124</text><svg x=\"48.760539925292974%\" y=\"40\" height=\"20\" width=\"7.23542436784448%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">wrong</text> </svg></svg><line x1=\"55.995964293137455%\" x2=\"56.964861601051894%\" y1=\"60\" y2=\"60\" id=\"_fb_erbvkscploqvwalqhmum_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"56.48041294709468%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_erbvkscploqvwalqhmum_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.017</text><svg x=\"55.995964293137455%\" y=\"40\" height=\"20\" width=\"0.968897307914439%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">minute</text> </svg></svg><line x1=\"56.964861601051894%\" x2=\"57.08266099812767%\" y1=\"60\" y2=\"60\" id=\"_fb_erbvkscploqvwalqhmum_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"57.02376129958978%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_erbvkscploqvwalqhmum_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.002</text><svg x=\"56.964861601051894%\" y=\"40\" height=\"20\" width=\"0.11779939707577824%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">grabbing</text> </svg></svg><line x1=\"57.08266099812767%\" x2=\"57.172943833744455%\" y1=\"60\" y2=\"60\" id=\"_fb_erbvkscploqvwalqhmum_ind_6\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"57.12780241593606%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_erbvkscploqvwalqhmum_ind_6\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.002</text><svg x=\"57.08266099812767%\" y=\"40\" height=\"20\" width=\"0.09028283561678307%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">post</text> </svg></svg><line x1=\"57.172943833744455%\" x2=\"57.172944926112315%\" y1=\"60\" y2=\"60\" id=\"_fb_erbvkscploqvwalqhmum_ind_11\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"57.17294437992838%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_erbvkscploqvwalqhmum_ind_11\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"57.172943833744455%\" y=\"40\" height=\"20\" width=\"1.0923678601670872e-06%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"48.760539925292974%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"48.760539925292974%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"48.760539925292974%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"48.760539925292974%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"48.760539925292974%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"48.760539925292974%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"48.760539925292974%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"48.760539925292974%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"55.995964293137455%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"55.995964293137455%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"55.995964293137455%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"55.995964293137455%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"55.995964293137455%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"55.995964293137455%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"55.995964293137455%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"55.995964293137455%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"56.964861601051894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"56.964861601051894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"56.964861601051894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"56.964861601051894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"56.964861601051894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"56.964861601051894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"56.964861601051894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"56.964861601051894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"57.08266099812767%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"57.08266099812767%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"57.08266099812767%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"57.08266099812767%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"57.08266099812767%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"57.08266099812767%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"57.08266099812767%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"57.08266099812767%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"57.172943833744455%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"57.172943833744455%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"57.172943833744455%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"57.172943833744455%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"57.172943833744455%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"57.172943833744455%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"57.172943833744455%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"57.172943833744455%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"31.2673319315683%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"57.172944926112315%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"48.760539925292974%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"31.2673319315683%\" y=\"40\" height=\"20\" width=\"17.493207993724674%\" onmouseover=\"document.getElementById('_tp_erbvkscploqvwalqhmum_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_erbvkscploqvwalqhmum_ind_9').style.opacity = 1;document.getElementById('_fb_erbvkscploqvwalqhmum_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_erbvkscploqvwalqhmum_ind_9').style.textDecoration = 'none';document.getElementById('_fs_erbvkscploqvwalqhmum_ind_9').style.opacity = 0;document.getElementById('_fb_erbvkscploqvwalqhmum_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"55.995964293137455%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"48.760539925292974%\" y=\"40\" height=\"20\" width=\"7.23542436784448%\" onmouseover=\"document.getElementById('_tp_erbvkscploqvwalqhmum_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_erbvkscploqvwalqhmum_ind_10').style.opacity = 1;document.getElementById('_fb_erbvkscploqvwalqhmum_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_erbvkscploqvwalqhmum_ind_10').style.textDecoration = 'none';document.getElementById('_fs_erbvkscploqvwalqhmum_ind_10').style.opacity = 0;document.getElementById('_fb_erbvkscploqvwalqhmum_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"56.964861601051894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"55.995964293137455%\" y=\"40\" height=\"20\" width=\"0.968897307914439%\" onmouseover=\"document.getElementById('_tp_erbvkscploqvwalqhmum_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_erbvkscploqvwalqhmum_ind_4').style.opacity = 1;document.getElementById('_fb_erbvkscploqvwalqhmum_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_erbvkscploqvwalqhmum_ind_4').style.textDecoration = 'none';document.getElementById('_fs_erbvkscploqvwalqhmum_ind_4').style.opacity = 0;document.getElementById('_fb_erbvkscploqvwalqhmum_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"57.08266099812767%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"56.964861601051894%\" y=\"40\" height=\"20\" width=\"0.11779939707577824%\" onmouseover=\"document.getElementById('_tp_erbvkscploqvwalqhmum_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_erbvkscploqvwalqhmum_ind_2').style.opacity = 1;document.getElementById('_fb_erbvkscploqvwalqhmum_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_erbvkscploqvwalqhmum_ind_2').style.textDecoration = 'none';document.getElementById('_fs_erbvkscploqvwalqhmum_ind_2').style.opacity = 0;document.getElementById('_fb_erbvkscploqvwalqhmum_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"57.172943833744455%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"57.08266099812767%\" y=\"40\" height=\"20\" width=\"0.09028283561678307%\" onmouseover=\"document.getElementById('_tp_erbvkscploqvwalqhmum_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_erbvkscploqvwalqhmum_ind_6').style.opacity = 1;document.getElementById('_fb_erbvkscploqvwalqhmum_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_erbvkscploqvwalqhmum_ind_6').style.textDecoration = 'none';document.getElementById('_fs_erbvkscploqvwalqhmum_ind_6').style.opacity = 0;document.getElementById('_fb_erbvkscploqvwalqhmum_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"57.172943833744455%\" y=\"40\" height=\"20\" width=\"1.0923678601670872e-06%\" onmouseover=\"document.getElementById('_tp_erbvkscploqvwalqhmum_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_erbvkscploqvwalqhmum_ind_11').style.opacity = 1;document.getElementById('_fb_erbvkscploqvwalqhmum_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_erbvkscploqvwalqhmum_ind_11').style.textDecoration = 'none';document.getElementById('_fs_erbvkscploqvwalqhmum_ind_11').style.opacity = 0;document.getElementById('_fb_erbvkscploqvwalqhmum_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_erbvkscploqvwalqhmum_ind_0'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_erbvkscploqvwalqhmum_ind_0').style.opacity = 1; document.getElementById('_fs_erbvkscploqvwalqhmum_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_erbvkscploqvwalqhmum_ind_0').style.opacity = 0; document.getElementById('_fs_erbvkscploqvwalqhmum_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.014</div\n",
|
|
" ><div id='_tp_erbvkscploqvwalqhmum_ind_1'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.014656367597544035); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_erbvkscploqvwalqhmum_ind_1').style.opacity = 1; document.getElementById('_fs_erbvkscploqvwalqhmum_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_erbvkscploqvwalqhmum_ind_1').style.opacity = 0; document.getElementById('_fs_erbvkscploqvwalqhmum_ind_1').style.opacity = 0;\"\n",
|
|
" >im </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.002</div\n",
|
|
" ><div id='_tp_erbvkscploqvwalqhmum_ind_2'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_erbvkscploqvwalqhmum_ind_2').style.opacity = 1; document.getElementById('_fs_erbvkscploqvwalqhmum_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_erbvkscploqvwalqhmum_ind_2').style.opacity = 0; document.getElementById('_fs_erbvkscploqvwalqhmum_ind_2').style.opacity = 0;\"\n",
|
|
" >grabbing </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.01</div\n",
|
|
" ><div id='_tp_erbvkscploqvwalqhmum_ind_3'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_erbvkscploqvwalqhmum_ind_3').style.opacity = 1; document.getElementById('_fs_erbvkscploqvwalqhmum_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_erbvkscploqvwalqhmum_ind_3').style.opacity = 0; document.getElementById('_fs_erbvkscploqvwalqhmum_ind_3').style.opacity = 0;\"\n",
|
|
" >a </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.017</div\n",
|
|
" ><div id='_tp_erbvkscploqvwalqhmum_ind_4'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_erbvkscploqvwalqhmum_ind_4').style.opacity = 1; document.getElementById('_fs_erbvkscploqvwalqhmum_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_erbvkscploqvwalqhmum_ind_4').style.opacity = 0; document.getElementById('_fs_erbvkscploqvwalqhmum_ind_4').style.opacity = 0;\"\n",
|
|
" >minute </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.026</div\n",
|
|
" ><div id='_tp_erbvkscploqvwalqhmum_ind_5'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.02253911665676371); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_erbvkscploqvwalqhmum_ind_5').style.opacity = 1; document.getElementById('_fs_erbvkscploqvwalqhmum_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_erbvkscploqvwalqhmum_ind_5').style.opacity = 0; document.getElementById('_fs_erbvkscploqvwalqhmum_ind_5').style.opacity = 0;\"\n",
|
|
" >to </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.002</div\n",
|
|
" ><div id='_tp_erbvkscploqvwalqhmum_ind_6'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_erbvkscploqvwalqhmum_ind_6').style.opacity = 1; document.getElementById('_fs_erbvkscploqvwalqhmum_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_erbvkscploqvwalqhmum_ind_6').style.opacity = 0; document.getElementById('_fs_erbvkscploqvwalqhmum_ind_6').style.opacity = 0;\"\n",
|
|
" >post </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.005</div\n",
|
|
" ><div id='_tp_erbvkscploqvwalqhmum_ind_7'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_erbvkscploqvwalqhmum_ind_7').style.opacity = 1; document.getElementById('_fs_erbvkscploqvwalqhmum_ind_7').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_erbvkscploqvwalqhmum_ind_7').style.opacity = 0; document.getElementById('_fs_erbvkscploqvwalqhmum_ind_7').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.109</div\n",
|
|
" ><div id='_tp_erbvkscploqvwalqhmum_ind_8'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.12501485442661908); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_erbvkscploqvwalqhmum_ind_8').style.opacity = 1; document.getElementById('_fs_erbvkscploqvwalqhmum_ind_8').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_erbvkscploqvwalqhmum_ind_8').style.opacity = 0; document.getElementById('_fs_erbvkscploqvwalqhmum_ind_8').style.opacity = 0;\"\n",
|
|
" >feel </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.3</div\n",
|
|
" ><div id='_tp_erbvkscploqvwalqhmum_ind_9'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.34573182808476927); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_erbvkscploqvwalqhmum_ind_9').style.opacity = 1; document.getElementById('_fs_erbvkscploqvwalqhmum_ind_9').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_erbvkscploqvwalqhmum_ind_9').style.opacity = 0; document.getElementById('_fs_erbvkscploqvwalqhmum_ind_9').style.opacity = 0;\"\n",
|
|
" >greedy </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.124</div\n",
|
|
" ><div id='_tp_erbvkscploqvwalqhmum_ind_10'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.14078035254505836); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_erbvkscploqvwalqhmum_ind_10').style.opacity = 1; document.getElementById('_fs_erbvkscploqvwalqhmum_ind_10').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_erbvkscploqvwalqhmum_ind_10').style.opacity = 0; document.getElementById('_fs_erbvkscploqvwalqhmum_ind_10').style.opacity = 0;\"\n",
|
|
" >wrong</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_erbvkscploqvwalqhmum_ind_11'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_erbvkscploqvwalqhmum_ind_11').style.opacity = 1; document.getElementById('_fs_erbvkscploqvwalqhmum_ind_11').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_erbvkscploqvwalqhmum_ind_11').style.opacity = 0; document.getElementById('_fs_erbvkscploqvwalqhmum_ind_11').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_unvxfbqcaujtzhoysnxx_output_1_zoom' style='display: none;'><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"44.36693556573544%\" y1=\"33\" x2=\"44.36693556573544%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"44.36693556573544%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.1</text><line x1=\"30.670553961279808%\" y1=\"33\" x2=\"30.670553961279808%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"30.670553961279808%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0</text><line x1=\"16.974172356824177%\" y1=\"33\" x2=\"16.974172356824177%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"16.974172356824177%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.1</text><line x1=\"58.06331717019107%\" y1=\"33\" x2=\"58.06331717019107%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"58.06331717019107%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.2</text><line x1=\"71.75969877464671%\" y1=\"33\" x2=\"71.75969877464671%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"71.75969877464671%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.3</text><line x1=\"85.45608037910233%\" y1=\"33\" x2=\"85.45608037910233%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"85.45608037910233%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.4</text><line x1=\"69.23587028541657%\" y1=\"33\" x2=\"69.23587028541657%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"69.23587028541657%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.281573</text><text x=\"69.23587028541657%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.281573</text><text x=\"69.23587028541657%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"30.764128344945263%\" y1=\"33\" x2=\"30.764128344945263%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"30.764128344945263%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.000683205</text><text x=\"30.764128344945263%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.000683205</text><text x=\"30.764128344945263%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">joy</tspan>(inputs)</text><rect x=\"8.333333219196819%\" width=\"22.430795125748443%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"15.845169526856496%\" x2=\"30.764128344945263%\" y1=\"60\" y2=\"60\" id=\"_fb_bvaukwprrwffsltmgokj_ind_8\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"23.30464893590088%\" y=\"71\" font-size=\"12px\" id=\"_fs_bvaukwprrwffsltmgokj_ind_8\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.109</text><svg x=\"15.845169526856496%\" y=\"40\" height=\"20\" width=\"14.918958818088766%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"12.297116144783327%\" x2=\"15.845169526856496%\" y1=\"60\" y2=\"60\" id=\"_fb_bvaukwprrwffsltmgokj_ind_5\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"14.071142835819913%\" y=\"71\" font-size=\"12px\" id=\"_fs_bvaukwprrwffsltmgokj_ind_5\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.026</text><svg x=\"12.297116144783327%\" y=\"40\" height=\"20\" width=\"3.548053382073169%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><line x1=\"10.38162726535464%\" x2=\"12.297116144783327%\" y1=\"60\" y2=\"60\" id=\"_fb_bvaukwprrwffsltmgokj_ind_1\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"11.339371705068984%\" y=\"71\" font-size=\"12px\" id=\"_fs_bvaukwprrwffsltmgokj_ind_1\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.014</text><svg x=\"10.38162726535464%\" y=\"40\" height=\"20\" width=\"1.915488879428688%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">im</text> </svg></svg><line x1=\"9.026051282413782%\" x2=\"10.38162726535464%\" y1=\"60\" y2=\"60\" id=\"_fb_bvaukwprrwffsltmgokj_ind_3\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"9.70383927388421%\" y=\"71\" font-size=\"12px\" id=\"_fs_bvaukwprrwffsltmgokj_ind_3\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.01</text><svg x=\"9.026051282413782%\" y=\"40\" height=\"20\" width=\"1.3555759829408576%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">a</text> </svg></svg><line x1=\"8.333335006496547%\" x2=\"9.026051282413782%\" y1=\"60\" y2=\"60\" id=\"_fb_bvaukwprrwffsltmgokj_ind_7\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.679693144455165%\" y=\"71\" font-size=\"12px\" id=\"_fs_bvaukwprrwffsltmgokj_ind_7\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.005</text><svg x=\"8.333335006496547%\" y=\"40\" height=\"20\" width=\"0.6927162759172347%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"8.333333219196819%\" x2=\"8.333335006496547%\" y1=\"60\" y2=\"60\" id=\"_fb_bvaukwprrwffsltmgokj_ind_0\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.333334112846682%\" y=\"71\" font-size=\"12px\" id=\"_fs_bvaukwprrwffsltmgokj_ind_0\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"8.333333219196819%\" y=\"40\" height=\"20\" width=\"1.787299728661651e-06%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"15.845169526856496%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"15.845169526856496%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"15.845169526856496%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"15.845169526856496%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"15.845169526856496%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"15.845169526856496%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"15.845169526856496%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"15.845169526856496%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"12.297116144783327%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"12.297116144783327%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"12.297116144783327%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"12.297116144783327%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"12.297116144783327%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"12.297116144783327%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"12.297116144783327%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"12.297116144783327%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"10.38162726535464%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"10.38162726535464%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"10.38162726535464%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"10.38162726535464%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"10.38162726535464%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"10.38162726535464%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"10.38162726535464%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"10.38162726535464%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"9.026051282413782%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"9.026051282413782%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"9.026051282413782%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"9.026051282413782%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"9.026051282413782%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"9.026051282413782%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"9.026051282413782%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"9.026051282413782%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.333335006496547%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.333335006496547%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.333335006496547%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.333335006496547%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.333335006496547%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.333335006496547%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.333335006496547%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.333335006496547%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"30.764128344945263%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.333333219196819%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"30.764128344945263%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"15.845169526856496%\" y=\"40\" height=\"20\" width=\"14.918958818088766%\" onmouseover=\"document.getElementById('_tp_bvaukwprrwffsltmgokj_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_bvaukwprrwffsltmgokj_ind_8').style.opacity = 1;document.getElementById('_fb_bvaukwprrwffsltmgokj_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_bvaukwprrwffsltmgokj_ind_8').style.textDecoration = 'none';document.getElementById('_fs_bvaukwprrwffsltmgokj_ind_8').style.opacity = 0;document.getElementById('_fb_bvaukwprrwffsltmgokj_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"15.845169526856496%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"12.297116144783327%\" y=\"40\" height=\"20\" width=\"3.548053382073169%\" onmouseover=\"document.getElementById('_tp_bvaukwprrwffsltmgokj_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_bvaukwprrwffsltmgokj_ind_5').style.opacity = 1;document.getElementById('_fb_bvaukwprrwffsltmgokj_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_bvaukwprrwffsltmgokj_ind_5').style.textDecoration = 'none';document.getElementById('_fs_bvaukwprrwffsltmgokj_ind_5').style.opacity = 0;document.getElementById('_fb_bvaukwprrwffsltmgokj_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"12.297116144783327%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"10.38162726535464%\" y=\"40\" height=\"20\" width=\"1.915488879428688%\" onmouseover=\"document.getElementById('_tp_bvaukwprrwffsltmgokj_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_bvaukwprrwffsltmgokj_ind_1').style.opacity = 1;document.getElementById('_fb_bvaukwprrwffsltmgokj_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_bvaukwprrwffsltmgokj_ind_1').style.textDecoration = 'none';document.getElementById('_fs_bvaukwprrwffsltmgokj_ind_1').style.opacity = 0;document.getElementById('_fb_bvaukwprrwffsltmgokj_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"10.38162726535464%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"9.026051282413782%\" y=\"40\" height=\"20\" width=\"1.3555759829408576%\" onmouseover=\"document.getElementById('_tp_bvaukwprrwffsltmgokj_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_bvaukwprrwffsltmgokj_ind_3').style.opacity = 1;document.getElementById('_fb_bvaukwprrwffsltmgokj_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_bvaukwprrwffsltmgokj_ind_3').style.textDecoration = 'none';document.getElementById('_fs_bvaukwprrwffsltmgokj_ind_3').style.opacity = 0;document.getElementById('_fb_bvaukwprrwffsltmgokj_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"9.026051282413782%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.333335006496547%\" y=\"40\" height=\"20\" width=\"0.6927162759172347%\" onmouseover=\"document.getElementById('_tp_bvaukwprrwffsltmgokj_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_bvaukwprrwffsltmgokj_ind_7').style.opacity = 1;document.getElementById('_fb_bvaukwprrwffsltmgokj_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_bvaukwprrwffsltmgokj_ind_7').style.textDecoration = 'none';document.getElementById('_fs_bvaukwprrwffsltmgokj_ind_7').style.opacity = 0;document.getElementById('_fb_bvaukwprrwffsltmgokj_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"8.333333219196819%\" y=\"40\" height=\"20\" width=\"1.787299728661651e-06%\" onmouseover=\"document.getElementById('_tp_bvaukwprrwffsltmgokj_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_bvaukwprrwffsltmgokj_ind_0').style.opacity = 1;document.getElementById('_fb_bvaukwprrwffsltmgokj_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_bvaukwprrwffsltmgokj_ind_0').style.textDecoration = 'none';document.getElementById('_fs_bvaukwprrwffsltmgokj_ind_0').style.opacity = 0;document.getElementById('_fb_bvaukwprrwffsltmgokj_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"30.764128344945263%\" width=\"60.90253706621975%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"30.764128344945263%\" x2=\"71.88960754010225%\" y1=\"60\" y2=\"60\" id=\"_fb_bvaukwprrwffsltmgokj_ind_9\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"51.326867942523755%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_bvaukwprrwffsltmgokj_ind_9\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.3</text><svg x=\"30.764128344945263%\" y=\"40\" height=\"20\" width=\"41.125479195156984%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">greedy</text> </svg></svg><line x1=\"71.88960754010225%\" x2=\"88.89965477755942%\" y1=\"60\" y2=\"60\" id=\"_fb_bvaukwprrwffsltmgokj_ind_10\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"80.39463115883083%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_bvaukwprrwffsltmgokj_ind_10\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.124</text><svg x=\"71.88960754010225%\" y=\"40\" height=\"20\" width=\"17.010047237457172%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">wrong</text> </svg></svg><line x1=\"88.89965477755942%\" x2=\"91.17747403707848%\" y1=\"60\" y2=\"60\" id=\"_fb_bvaukwprrwffsltmgokj_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"90.03856440731894%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_bvaukwprrwffsltmgokj_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.017</text><svg x=\"88.89965477755942%\" y=\"40\" height=\"20\" width=\"2.277819259519063%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">minute</text> </svg></svg><line x1=\"91.17747403707848%\" x2=\"91.45441333005321%\" y1=\"60\" y2=\"60\" id=\"_fb_bvaukwprrwffsltmgokj_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.31594368356585%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_bvaukwprrwffsltmgokj_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.002</text><svg x=\"91.17747403707848%\" y=\"40\" height=\"20\" width=\"0.2769392929747312%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">grabbing</text> </svg></svg><line x1=\"91.45441333005321%\" x2=\"91.66666284307391%\" y1=\"60\" y2=\"60\" id=\"_fb_bvaukwprrwffsltmgokj_ind_6\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.56053808656355%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_bvaukwprrwffsltmgokj_ind_6\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.002</text><svg x=\"91.45441333005321%\" y=\"40\" height=\"20\" width=\"0.21224951302069428%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">post</text> </svg></svg><line x1=\"91.66666284307391%\" x2=\"91.66666541116501%\" y1=\"60\" y2=\"60\" id=\"_fb_bvaukwprrwffsltmgokj_ind_11\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.66666412711946%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_bvaukwprrwffsltmgokj_ind_11\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"91.66666284307391%\" y=\"40\" height=\"20\" width=\"2.568091105104031e-06%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"71.88960754010225%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"71.88960754010225%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"71.88960754010225%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"71.88960754010225%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"71.88960754010225%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"71.88960754010225%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"71.88960754010225%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"71.88960754010225%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"88.89965477755942%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"88.89965477755942%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"88.89965477755942%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"88.89965477755942%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"88.89965477755942%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"88.89965477755942%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"88.89965477755942%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"88.89965477755942%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.17747403707848%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.17747403707848%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.17747403707848%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.17747403707848%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.17747403707848%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.17747403707848%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.17747403707848%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.17747403707848%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.45441333005321%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.45441333005321%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.45441333005321%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.45441333005321%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.45441333005321%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.45441333005321%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.45441333005321%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.45441333005321%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.66666284307391%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.66666284307391%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.66666284307391%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.66666284307391%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.66666284307391%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.66666284307391%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.66666284307391%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.66666284307391%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"30.764128344945263%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66666541116501%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"71.88960754010225%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"30.764128344945263%\" y=\"40\" height=\"20\" width=\"41.125479195156984%\" onmouseover=\"document.getElementById('_tp_bvaukwprrwffsltmgokj_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_bvaukwprrwffsltmgokj_ind_9').style.opacity = 1;document.getElementById('_fb_bvaukwprrwffsltmgokj_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_bvaukwprrwffsltmgokj_ind_9').style.textDecoration = 'none';document.getElementById('_fs_bvaukwprrwffsltmgokj_ind_9').style.opacity = 0;document.getElementById('_fb_bvaukwprrwffsltmgokj_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"88.89965477755942%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"71.88960754010225%\" y=\"40\" height=\"20\" width=\"17.010047237457172%\" onmouseover=\"document.getElementById('_tp_bvaukwprrwffsltmgokj_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_bvaukwprrwffsltmgokj_ind_10').style.opacity = 1;document.getElementById('_fb_bvaukwprrwffsltmgokj_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_bvaukwprrwffsltmgokj_ind_10').style.textDecoration = 'none';document.getElementById('_fs_bvaukwprrwffsltmgokj_ind_10').style.opacity = 0;document.getElementById('_fb_bvaukwprrwffsltmgokj_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.17747403707848%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"88.89965477755942%\" y=\"40\" height=\"20\" width=\"2.277819259519063%\" onmouseover=\"document.getElementById('_tp_bvaukwprrwffsltmgokj_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_bvaukwprrwffsltmgokj_ind_4').style.opacity = 1;document.getElementById('_fb_bvaukwprrwffsltmgokj_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_bvaukwprrwffsltmgokj_ind_4').style.textDecoration = 'none';document.getElementById('_fs_bvaukwprrwffsltmgokj_ind_4').style.opacity = 0;document.getElementById('_fb_bvaukwprrwffsltmgokj_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.45441333005321%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.17747403707848%\" y=\"40\" height=\"20\" width=\"0.2769392929747312%\" onmouseover=\"document.getElementById('_tp_bvaukwprrwffsltmgokj_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_bvaukwprrwffsltmgokj_ind_2').style.opacity = 1;document.getElementById('_fb_bvaukwprrwffsltmgokj_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_bvaukwprrwffsltmgokj_ind_2').style.textDecoration = 'none';document.getElementById('_fs_bvaukwprrwffsltmgokj_ind_2').style.opacity = 0;document.getElementById('_fb_bvaukwprrwffsltmgokj_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66666284307391%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.45441333005321%\" y=\"40\" height=\"20\" width=\"0.21224951302069428%\" onmouseover=\"document.getElementById('_tp_bvaukwprrwffsltmgokj_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_bvaukwprrwffsltmgokj_ind_6').style.opacity = 1;document.getElementById('_fb_bvaukwprrwffsltmgokj_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_bvaukwprrwffsltmgokj_ind_6').style.textDecoration = 'none';document.getElementById('_fs_bvaukwprrwffsltmgokj_ind_6').style.opacity = 0;document.getElementById('_fb_bvaukwprrwffsltmgokj_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"91.66666284307391%\" y=\"40\" height=\"20\" width=\"2.568091105104031e-06%\" onmouseover=\"document.getElementById('_tp_bvaukwprrwffsltmgokj_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_bvaukwprrwffsltmgokj_ind_11').style.opacity = 1;document.getElementById('_fb_bvaukwprrwffsltmgokj_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_bvaukwprrwffsltmgokj_ind_11').style.textDecoration = 'none';document.getElementById('_fs_bvaukwprrwffsltmgokj_ind_11').style.opacity = 0;document.getElementById('_fb_bvaukwprrwffsltmgokj_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_bvaukwprrwffsltmgokj_ind_0'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_bvaukwprrwffsltmgokj_ind_0').style.opacity = 1; document.getElementById('_fs_bvaukwprrwffsltmgokj_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_bvaukwprrwffsltmgokj_ind_0').style.opacity = 0; document.getElementById('_fs_bvaukwprrwffsltmgokj_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.014</div\n",
|
|
" ><div id='_tp_bvaukwprrwffsltmgokj_ind_1'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.03830461477520289); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_bvaukwprrwffsltmgokj_ind_1').style.opacity = 1; document.getElementById('_fs_bvaukwprrwffsltmgokj_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_bvaukwprrwffsltmgokj_ind_1').style.opacity = 0; document.getElementById('_fs_bvaukwprrwffsltmgokj_ind_1').style.opacity = 0;\"\n",
|
|
" >im </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.002</div\n",
|
|
" ><div id='_tp_bvaukwprrwffsltmgokj_ind_2'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_bvaukwprrwffsltmgokj_ind_2').style.opacity = 1; document.getElementById('_fs_bvaukwprrwffsltmgokj_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_bvaukwprrwffsltmgokj_ind_2').style.opacity = 0; document.getElementById('_fs_bvaukwprrwffsltmgokj_ind_2').style.opacity = 0;\"\n",
|
|
" >grabbing </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.01</div\n",
|
|
" ><div id='_tp_bvaukwprrwffsltmgokj_ind_3'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.030421865715983164); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_bvaukwprrwffsltmgokj_ind_3').style.opacity = 1; document.getElementById('_fs_bvaukwprrwffsltmgokj_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_bvaukwprrwffsltmgokj_ind_3').style.opacity = 0; document.getElementById('_fs_bvaukwprrwffsltmgokj_ind_3').style.opacity = 0;\"\n",
|
|
" >a </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.017</div\n",
|
|
" ><div id='_tp_bvaukwprrwffsltmgokj_ind_4'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.05407011289364222); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_bvaukwprrwffsltmgokj_ind_4').style.opacity = 1; document.getElementById('_fs_bvaukwprrwffsltmgokj_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_bvaukwprrwffsltmgokj_ind_4').style.opacity = 0; document.getElementById('_fs_bvaukwprrwffsltmgokj_ind_4').style.opacity = 0;\"\n",
|
|
" >minute </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.026</div\n",
|
|
" ><div id='_tp_bvaukwprrwffsltmgokj_ind_5'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.08560110913052081); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_bvaukwprrwffsltmgokj_ind_5').style.opacity = 1; document.getElementById('_fs_bvaukwprrwffsltmgokj_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_bvaukwprrwffsltmgokj_ind_5').style.opacity = 0; document.getElementById('_fs_bvaukwprrwffsltmgokj_ind_5').style.opacity = 0;\"\n",
|
|
" >to </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.002</div\n",
|
|
" ><div id='_tp_bvaukwprrwffsltmgokj_ind_6'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_bvaukwprrwffsltmgokj_ind_6').style.opacity = 1; document.getElementById('_fs_bvaukwprrwffsltmgokj_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_bvaukwprrwffsltmgokj_ind_6').style.opacity = 0; document.getElementById('_fs_bvaukwprrwffsltmgokj_ind_6').style.opacity = 0;\"\n",
|
|
" >post </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.005</div\n",
|
|
" ><div id='_tp_bvaukwprrwffsltmgokj_ind_7'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.014656367597544035); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_bvaukwprrwffsltmgokj_ind_7').style.opacity = 1; document.getElementById('_fs_bvaukwprrwffsltmgokj_ind_7').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_bvaukwprrwffsltmgokj_ind_7').style.opacity = 0; document.getElementById('_fs_bvaukwprrwffsltmgokj_ind_7').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.109</div\n",
|
|
" ><div id='_tp_bvaukwprrwffsltmgokj_ind_8'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.36149732620320857); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_bvaukwprrwffsltmgokj_ind_8').style.opacity = 1; document.getElementById('_fs_bvaukwprrwffsltmgokj_ind_8').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_bvaukwprrwffsltmgokj_ind_8').style.opacity = 0; document.getElementById('_fs_bvaukwprrwffsltmgokj_ind_8').style.opacity = 0;\"\n",
|
|
" >feel </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.3</div\n",
|
|
" ><div id='_tp_bvaukwprrwffsltmgokj_ind_9'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 1.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_bvaukwprrwffsltmgokj_ind_9').style.opacity = 1; document.getElementById('_fs_bvaukwprrwffsltmgokj_ind_9').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_bvaukwprrwffsltmgokj_ind_9').style.opacity = 0; document.getElementById('_fs_bvaukwprrwffsltmgokj_ind_9').style.opacity = 0;\"\n",
|
|
" >greedy </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.124</div\n",
|
|
" ><div id='_tp_bvaukwprrwffsltmgokj_ind_10'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.4087938205585264); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_bvaukwprrwffsltmgokj_ind_10').style.opacity = 1; document.getElementById('_fs_bvaukwprrwffsltmgokj_ind_10').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_bvaukwprrwffsltmgokj_ind_10').style.opacity = 0; document.getElementById('_fs_bvaukwprrwffsltmgokj_ind_10').style.opacity = 0;\"\n",
|
|
" >wrong</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_bvaukwprrwffsltmgokj_ind_11'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_bvaukwprrwffsltmgokj_ind_11').style.opacity = 1; document.getElementById('_fs_bvaukwprrwffsltmgokj_ind_11').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_bvaukwprrwffsltmgokj_ind_11').style.opacity = 0; document.getElementById('_fs_bvaukwprrwffsltmgokj_ind_11').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_unvxfbqcaujtzhoysnxx_output_2' style='display: none';><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"48.705281698548966%\" y1=\"33\" x2=\"48.705281698548966%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"48.705281698548966%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.3</text><line x1=\"37.053446541506865%\" y1=\"33\" x2=\"37.053446541506865%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"37.053446541506865%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.1</text><line x1=\"25.40161138446477%\" y1=\"33\" x2=\"25.40161138446477%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"25.40161138446477%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.1</text><line x1=\"13.749776227422668%\" y1=\"33\" x2=\"13.749776227422668%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"13.749776227422668%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.3</text><line x1=\"60.357116855591066%\" y1=\"33\" x2=\"60.357116855591066%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"60.357116855591066%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.5</text><line x1=\"72.00895201263315%\" y1=\"33\" x2=\"72.00895201263315%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"72.00895201263315%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.7</text><line x1=\"83.66078716967526%\" y1=\"33\" x2=\"83.66078716967526%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"83.66078716967526%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.9</text><line x1=\"37.63962407299409%\" y1=\"33\" x2=\"37.63962407299409%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"37.63962407299409%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.110062</text><text x=\"37.63962407299409%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.110062</text><text x=\"37.63962407299409%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"31.34847756060137%\" y1=\"33\" x2=\"31.34847756060137%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"31.34847756060137%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.00207604</text><text x=\"31.34847756060137%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.00207604</text><text x=\"31.34847756060137%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">love</tspan>(inputs)</text><rect x=\"31.08264112490814%\" width=\"0.26583643569323184%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"31.125027630386075%\" x2=\"31.34847756060137%\" y1=\"60\" y2=\"60\" id=\"_fb_rtmqlefnocmkgabgauxz_ind_4\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"31.236752595493723%\" y=\"71\" font-size=\"12px\" id=\"_fs_rtmqlefnocmkgabgauxz_ind_4\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.004</text><svg x=\"31.125027630386075%\" y=\"40\" height=\"20\" width=\"0.22344993021529547%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">minute</text> </svg></svg><line x1=\"31.08264112490814%\" x2=\"31.125027630386075%\" y1=\"60\" y2=\"60\" id=\"_fb_rtmqlefnocmkgabgauxz_ind_7\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"31.103834377647107%\" y=\"71\" font-size=\"12px\" id=\"_fs_rtmqlefnocmkgabgauxz_ind_7\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.001</text><svg x=\"31.08264112490814%\" y=\"40\" height=\"20\" width=\"0.04238650547793554%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"31.125027630386075%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"31.125027630386075%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"31.125027630386075%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"31.125027630386075%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"31.125027630386075%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"31.125027630386075%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"31.125027630386075%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"31.125027630386075%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"31.34847756060137%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"31.08264112490814%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"31.34847756060137%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"31.125027630386075%\" y=\"40\" height=\"20\" width=\"0.22344993021529547%\" onmouseover=\"document.getElementById('_tp_rtmqlefnocmkgabgauxz_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_rtmqlefnocmkgabgauxz_ind_4').style.opacity = 1;document.getElementById('_fb_rtmqlefnocmkgabgauxz_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rtmqlefnocmkgabgauxz_ind_4').style.textDecoration = 'none';document.getElementById('_fs_rtmqlefnocmkgabgauxz_ind_4').style.opacity = 0;document.getElementById('_fb_rtmqlefnocmkgabgauxz_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"31.08264112490814%\" y=\"40\" height=\"20\" width=\"0.04238650547793554%\" onmouseover=\"document.getElementById('_tp_rtmqlefnocmkgabgauxz_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_rtmqlefnocmkgabgauxz_ind_7').style.opacity = 1;document.getElementById('_fb_rtmqlefnocmkgabgauxz_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rtmqlefnocmkgabgauxz_ind_7').style.textDecoration = 'none';document.getElementById('_fs_rtmqlefnocmkgabgauxz_ind_7').style.opacity = 0;document.getElementById('_fb_rtmqlefnocmkgabgauxz_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"31.34847756060137%\" width=\"6.556982948085949%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"31.34847756060137%\" x2=\"33.559951977854936%\" y1=\"60\" y2=\"60\" id=\"_fb_rtmqlefnocmkgabgauxz_ind_9\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"32.45421476922815%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rtmqlefnocmkgabgauxz_ind_9\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.038</text><svg x=\"31.34847756060137%\" y=\"40\" height=\"20\" width=\"2.211474417253566%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">greedy</text> </svg></svg><line x1=\"33.559951977854936%\" x2=\"35.11388747850728%\" y1=\"60\" y2=\"60\" id=\"_fb_rtmqlefnocmkgabgauxz_ind_10\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"34.33691972818111%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rtmqlefnocmkgabgauxz_ind_10\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.027</text><svg x=\"33.559951977854936%\" y=\"40\" height=\"20\" width=\"1.5539355006523436%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">wrong</text> </svg></svg><line x1=\"35.11388747850728%\" x2=\"36.10176218091054%\" y1=\"60\" y2=\"60\" id=\"_fb_rtmqlefnocmkgabgauxz_ind_8\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"35.60782482970891%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rtmqlefnocmkgabgauxz_ind_8\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.017</text><svg x=\"35.11388747850728%\" y=\"40\" height=\"20\" width=\"0.9878747024032606%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"36.10176218091054%\" x2=\"36.87091924328509%\" y1=\"60\" y2=\"60\" id=\"_fb_rtmqlefnocmkgabgauxz_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"36.486340712097814%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rtmqlefnocmkgabgauxz_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.013</text><svg x=\"36.10176218091054%\" y=\"40\" height=\"20\" width=\"0.7691570623745463%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">grabbing</text> </svg></svg><line x1=\"36.87091924328509%\" x2=\"37.41727047402613%\" y1=\"60\" y2=\"60\" id=\"_fb_rtmqlefnocmkgabgauxz_ind_6\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"37.144094858655606%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rtmqlefnocmkgabgauxz_ind_6\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.009</text><svg x=\"36.87091924328509%\" y=\"40\" height=\"20\" width=\"0.5463512307410454%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">post</text> </svg></svg><line x1=\"37.41727047402613%\" x2=\"37.620443201358704%\" y1=\"60\" y2=\"60\" id=\"_fb_rtmqlefnocmkgabgauxz_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"37.51885683769242%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rtmqlefnocmkgabgauxz_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.003</text><svg x=\"37.41727047402613%\" y=\"40\" height=\"20\" width=\"0.2031727273325714%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><line x1=\"37.620443201358704%\" x2=\"37.811362044415354%\" y1=\"60\" y2=\"60\" id=\"_fb_rtmqlefnocmkgabgauxz_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"37.71590262288703%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rtmqlefnocmkgabgauxz_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.003</text><svg x=\"37.620443201358704%\" y=\"40\" height=\"20\" width=\"0.1909188430566502%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">im</text> </svg></svg><line x1=\"37.811362044415354%\" x2=\"37.90546012209846%\" y1=\"60\" y2=\"60\" id=\"_fb_rtmqlefnocmkgabgauxz_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"37.85841108325691%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rtmqlefnocmkgabgauxz_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.002</text><svg x=\"37.811362044415354%\" y=\"40\" height=\"20\" width=\"0.09409807768310685%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">a</text> </svg></svg><line x1=\"37.90546012209846%\" x2=\"37.905460440864715%\" y1=\"60\" y2=\"60\" id=\"_fb_rtmqlefnocmkgabgauxz_ind_11\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"37.90546028148159%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rtmqlefnocmkgabgauxz_ind_11\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"37.90546012209846%\" y=\"40\" height=\"20\" width=\"3.187662542813996e-07%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><line x1=\"37.905460440864715%\" x2=\"37.90546050868732%\" y1=\"60\" y2=\"60\" id=\"_fb_rtmqlefnocmkgabgauxz_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"37.90546047477602%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rtmqlefnocmkgabgauxz_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"37.905460440864715%\" y=\"40\" height=\"20\" width=\"6.7822604421508e-08%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"33.559951977854936%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"33.559951977854936%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"33.559951977854936%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"33.559951977854936%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"33.559951977854936%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"33.559951977854936%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"33.559951977854936%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"33.559951977854936%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"35.11388747850728%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"35.11388747850728%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"35.11388747850728%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"35.11388747850728%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"35.11388747850728%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"35.11388747850728%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"35.11388747850728%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"35.11388747850728%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"36.10176218091054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"36.10176218091054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"36.10176218091054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"36.10176218091054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"36.10176218091054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"36.10176218091054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"36.10176218091054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"36.10176218091054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"36.87091924328509%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"36.87091924328509%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"36.87091924328509%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"36.87091924328509%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"36.87091924328509%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"36.87091924328509%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"36.87091924328509%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"36.87091924328509%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"37.41727047402613%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"37.41727047402613%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"37.41727047402613%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"37.41727047402613%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"37.41727047402613%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"37.41727047402613%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"37.41727047402613%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"37.41727047402613%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"37.620443201358704%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"37.620443201358704%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"37.620443201358704%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"37.620443201358704%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"37.620443201358704%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"37.620443201358704%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"37.620443201358704%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"37.620443201358704%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"37.811362044415354%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"37.811362044415354%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"37.811362044415354%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"37.811362044415354%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"37.811362044415354%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"37.811362044415354%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"37.811362044415354%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"37.811362044415354%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"37.90546012209846%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"37.90546012209846%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"37.90546012209846%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"37.90546012209846%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"37.90546012209846%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"37.90546012209846%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"37.90546012209846%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"37.90546012209846%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"37.905460440864715%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"37.905460440864715%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"37.905460440864715%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"37.905460440864715%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"37.905460440864715%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"37.905460440864715%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"37.905460440864715%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"37.905460440864715%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"31.34847756060137%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"37.90546050868732%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"33.559951977854936%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"31.34847756060137%\" y=\"40\" height=\"20\" width=\"2.211474417253566%\" onmouseover=\"document.getElementById('_tp_rtmqlefnocmkgabgauxz_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_rtmqlefnocmkgabgauxz_ind_9').style.opacity = 1;document.getElementById('_fb_rtmqlefnocmkgabgauxz_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rtmqlefnocmkgabgauxz_ind_9').style.textDecoration = 'none';document.getElementById('_fs_rtmqlefnocmkgabgauxz_ind_9').style.opacity = 0;document.getElementById('_fb_rtmqlefnocmkgabgauxz_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"35.11388747850728%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"33.559951977854936%\" y=\"40\" height=\"20\" width=\"1.5539355006523436%\" onmouseover=\"document.getElementById('_tp_rtmqlefnocmkgabgauxz_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_rtmqlefnocmkgabgauxz_ind_10').style.opacity = 1;document.getElementById('_fb_rtmqlefnocmkgabgauxz_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rtmqlefnocmkgabgauxz_ind_10').style.textDecoration = 'none';document.getElementById('_fs_rtmqlefnocmkgabgauxz_ind_10').style.opacity = 0;document.getElementById('_fb_rtmqlefnocmkgabgauxz_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"36.10176218091054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"35.11388747850728%\" y=\"40\" height=\"20\" width=\"0.9878747024032606%\" onmouseover=\"document.getElementById('_tp_rtmqlefnocmkgabgauxz_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_rtmqlefnocmkgabgauxz_ind_8').style.opacity = 1;document.getElementById('_fb_rtmqlefnocmkgabgauxz_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rtmqlefnocmkgabgauxz_ind_8').style.textDecoration = 'none';document.getElementById('_fs_rtmqlefnocmkgabgauxz_ind_8').style.opacity = 0;document.getElementById('_fb_rtmqlefnocmkgabgauxz_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"36.87091924328509%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"36.10176218091054%\" y=\"40\" height=\"20\" width=\"0.7691570623745463%\" onmouseover=\"document.getElementById('_tp_rtmqlefnocmkgabgauxz_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_rtmqlefnocmkgabgauxz_ind_2').style.opacity = 1;document.getElementById('_fb_rtmqlefnocmkgabgauxz_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rtmqlefnocmkgabgauxz_ind_2').style.textDecoration = 'none';document.getElementById('_fs_rtmqlefnocmkgabgauxz_ind_2').style.opacity = 0;document.getElementById('_fb_rtmqlefnocmkgabgauxz_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"37.41727047402613%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"36.87091924328509%\" y=\"40\" height=\"20\" width=\"0.5463512307410454%\" onmouseover=\"document.getElementById('_tp_rtmqlefnocmkgabgauxz_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_rtmqlefnocmkgabgauxz_ind_6').style.opacity = 1;document.getElementById('_fb_rtmqlefnocmkgabgauxz_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rtmqlefnocmkgabgauxz_ind_6').style.textDecoration = 'none';document.getElementById('_fs_rtmqlefnocmkgabgauxz_ind_6').style.opacity = 0;document.getElementById('_fb_rtmqlefnocmkgabgauxz_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"37.620443201358704%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"37.41727047402613%\" y=\"40\" height=\"20\" width=\"0.2031727273325714%\" onmouseover=\"document.getElementById('_tp_rtmqlefnocmkgabgauxz_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_rtmqlefnocmkgabgauxz_ind_5').style.opacity = 1;document.getElementById('_fb_rtmqlefnocmkgabgauxz_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rtmqlefnocmkgabgauxz_ind_5').style.textDecoration = 'none';document.getElementById('_fs_rtmqlefnocmkgabgauxz_ind_5').style.opacity = 0;document.getElementById('_fb_rtmqlefnocmkgabgauxz_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"37.811362044415354%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"37.620443201358704%\" y=\"40\" height=\"20\" width=\"0.1909188430566502%\" onmouseover=\"document.getElementById('_tp_rtmqlefnocmkgabgauxz_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_rtmqlefnocmkgabgauxz_ind_1').style.opacity = 1;document.getElementById('_fb_rtmqlefnocmkgabgauxz_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rtmqlefnocmkgabgauxz_ind_1').style.textDecoration = 'none';document.getElementById('_fs_rtmqlefnocmkgabgauxz_ind_1').style.opacity = 0;document.getElementById('_fb_rtmqlefnocmkgabgauxz_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"37.90546012209846%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"37.811362044415354%\" y=\"40\" height=\"20\" width=\"0.09409807768310685%\" onmouseover=\"document.getElementById('_tp_rtmqlefnocmkgabgauxz_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_rtmqlefnocmkgabgauxz_ind_3').style.opacity = 1;document.getElementById('_fb_rtmqlefnocmkgabgauxz_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rtmqlefnocmkgabgauxz_ind_3').style.textDecoration = 'none';document.getElementById('_fs_rtmqlefnocmkgabgauxz_ind_3').style.opacity = 0;document.getElementById('_fb_rtmqlefnocmkgabgauxz_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"37.905460440864715%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"37.90546012209846%\" y=\"40\" height=\"20\" width=\"3.187662542813996e-07%\" onmouseover=\"document.getElementById('_tp_rtmqlefnocmkgabgauxz_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_rtmqlefnocmkgabgauxz_ind_11').style.opacity = 1;document.getElementById('_fb_rtmqlefnocmkgabgauxz_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rtmqlefnocmkgabgauxz_ind_11').style.textDecoration = 'none';document.getElementById('_fs_rtmqlefnocmkgabgauxz_ind_11').style.opacity = 0;document.getElementById('_fb_rtmqlefnocmkgabgauxz_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"37.905460440864715%\" y=\"40\" height=\"20\" width=\"6.7822604421508e-08%\" onmouseover=\"document.getElementById('_tp_rtmqlefnocmkgabgauxz_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_rtmqlefnocmkgabgauxz_ind_0').style.opacity = 1;document.getElementById('_fb_rtmqlefnocmkgabgauxz_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rtmqlefnocmkgabgauxz_ind_0').style.textDecoration = 'none';document.getElementById('_fs_rtmqlefnocmkgabgauxz_ind_0').style.opacity = 0;document.getElementById('_fb_rtmqlefnocmkgabgauxz_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_rtmqlefnocmkgabgauxz_ind_0'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_rtmqlefnocmkgabgauxz_ind_0').style.opacity = 1; document.getElementById('_fs_rtmqlefnocmkgabgauxz_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_rtmqlefnocmkgabgauxz_ind_0').style.opacity = 0; document.getElementById('_fs_rtmqlefnocmkgabgauxz_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.003</div\n",
|
|
" ><div id='_tp_rtmqlefnocmkgabgauxz_ind_1'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_rtmqlefnocmkgabgauxz_ind_1').style.opacity = 1; document.getElementById('_fs_rtmqlefnocmkgabgauxz_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_rtmqlefnocmkgabgauxz_ind_1').style.opacity = 0; document.getElementById('_fs_rtmqlefnocmkgabgauxz_ind_1').style.opacity = 0;\"\n",
|
|
" >im </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.013</div\n",
|
|
" ><div id='_tp_rtmqlefnocmkgabgauxz_ind_2'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_rtmqlefnocmkgabgauxz_ind_2').style.opacity = 1; document.getElementById('_fs_rtmqlefnocmkgabgauxz_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_rtmqlefnocmkgabgauxz_ind_2').style.opacity = 0; document.getElementById('_fs_rtmqlefnocmkgabgauxz_ind_2').style.opacity = 0;\"\n",
|
|
" >grabbing </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.002</div\n",
|
|
" ><div id='_tp_rtmqlefnocmkgabgauxz_ind_3'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_rtmqlefnocmkgabgauxz_ind_3').style.opacity = 1; document.getElementById('_fs_rtmqlefnocmkgabgauxz_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_rtmqlefnocmkgabgauxz_ind_3').style.opacity = 0; document.getElementById('_fs_rtmqlefnocmkgabgauxz_ind_3').style.opacity = 0;\"\n",
|
|
" >a </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.004</div\n",
|
|
" ><div id='_tp_rtmqlefnocmkgabgauxz_ind_4'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_rtmqlefnocmkgabgauxz_ind_4').style.opacity = 1; document.getElementById('_fs_rtmqlefnocmkgabgauxz_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_rtmqlefnocmkgabgauxz_ind_4').style.opacity = 0; document.getElementById('_fs_rtmqlefnocmkgabgauxz_ind_4').style.opacity = 0;\"\n",
|
|
" >minute </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.003</div\n",
|
|
" ><div id='_tp_rtmqlefnocmkgabgauxz_ind_5'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_rtmqlefnocmkgabgauxz_ind_5').style.opacity = 1; document.getElementById('_fs_rtmqlefnocmkgabgauxz_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_rtmqlefnocmkgabgauxz_ind_5').style.opacity = 0; document.getElementById('_fs_rtmqlefnocmkgabgauxz_ind_5').style.opacity = 0;\"\n",
|
|
" >to </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.009</div\n",
|
|
" ><div id='_tp_rtmqlefnocmkgabgauxz_ind_6'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_rtmqlefnocmkgabgauxz_ind_6').style.opacity = 1; document.getElementById('_fs_rtmqlefnocmkgabgauxz_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_rtmqlefnocmkgabgauxz_ind_6').style.opacity = 0; document.getElementById('_fs_rtmqlefnocmkgabgauxz_ind_6').style.opacity = 0;\"\n",
|
|
" >post </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.001</div\n",
|
|
" ><div id='_tp_rtmqlefnocmkgabgauxz_ind_7'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_rtmqlefnocmkgabgauxz_ind_7').style.opacity = 1; document.getElementById('_fs_rtmqlefnocmkgabgauxz_ind_7').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_rtmqlefnocmkgabgauxz_ind_7').style.opacity = 0; document.getElementById('_fs_rtmqlefnocmkgabgauxz_ind_7').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.017</div\n",
|
|
" ><div id='_tp_rtmqlefnocmkgabgauxz_ind_8'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_rtmqlefnocmkgabgauxz_ind_8').style.opacity = 1; document.getElementById('_fs_rtmqlefnocmkgabgauxz_ind_8').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_rtmqlefnocmkgabgauxz_ind_8').style.opacity = 0; document.getElementById('_fs_rtmqlefnocmkgabgauxz_ind_8').style.opacity = 0;\"\n",
|
|
" >feel </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.038</div\n",
|
|
" ><div id='_tp_rtmqlefnocmkgabgauxz_ind_9'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03830461477520309); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_rtmqlefnocmkgabgauxz_ind_9').style.opacity = 1; document.getElementById('_fs_rtmqlefnocmkgabgauxz_ind_9').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_rtmqlefnocmkgabgauxz_ind_9').style.opacity = 0; document.getElementById('_fs_rtmqlefnocmkgabgauxz_ind_9').style.opacity = 0;\"\n",
|
|
" >greedy </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.027</div\n",
|
|
" ><div id='_tp_rtmqlefnocmkgabgauxz_ind_10'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.022539116656763607); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_rtmqlefnocmkgabgauxz_ind_10').style.opacity = 1; document.getElementById('_fs_rtmqlefnocmkgabgauxz_ind_10').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_rtmqlefnocmkgabgauxz_ind_10').style.opacity = 0; document.getElementById('_fs_rtmqlefnocmkgabgauxz_ind_10').style.opacity = 0;\"\n",
|
|
" >wrong</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_rtmqlefnocmkgabgauxz_ind_11'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_rtmqlefnocmkgabgauxz_ind_11').style.opacity = 1; document.getElementById('_fs_rtmqlefnocmkgabgauxz_ind_11').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_rtmqlefnocmkgabgauxz_ind_11').style.opacity = 0; document.getElementById('_fs_rtmqlefnocmkgabgauxz_ind_11').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_unvxfbqcaujtzhoysnxx_output_2_zoom' style='display: none;'><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"52.79733314564342%\" y1=\"33\" x2=\"52.79733314564342%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"52.79733314564342%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.06</text><line x1=\"38.56588219587062%\" y1=\"33\" x2=\"38.56588219587062%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"38.56588219587062%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.04</text><line x1=\"24.334431246097836%\" y1=\"33\" x2=\"24.334431246097836%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"24.334431246097836%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.02</text><line x1=\"10.10298029632504%\" y1=\"33\" x2=\"10.10298029632504%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"10.10298029632504%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0</text><line x1=\"67.02878409541624%\" y1=\"33\" x2=\"67.02878409541624%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"67.02878409541624%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.08</text><line x1=\"81.26023504518902%\" y1=\"33\" x2=\"81.26023504518902%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"81.26023504518902%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.1</text><line x1=\"88.41975684993879%\" y1=\"33\" x2=\"88.41975684993879%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"88.41975684993879%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.110062</text><text x=\"88.41975684993879%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.110062</text><text x=\"88.41975684993879%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"11.580236034335753%\" y1=\"33\" x2=\"11.580236034335753%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"11.580236034335753%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.00207604</text><text x=\"11.580236034335753%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.00207604</text><text x=\"11.580236034335753%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">love</tspan>(inputs)</text><rect x=\"8.333332740356212%\" width=\"3.2469032939795395%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"8.851037861919808%\" x2=\"11.580236034335753%\" y1=\"60\" y2=\"60\" id=\"_fb_lvldzwmiovqyajvbzpqf_ind_4\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"10.21563694812778%\" y=\"71\" font-size=\"12px\" id=\"_fs_lvldzwmiovqyajvbzpqf_ind_4\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.004</text><svg x=\"8.851037861919808%\" y=\"40\" height=\"20\" width=\"2.729198172415945%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">minute</text> </svg></svg><line x1=\"8.333332740356212%\" x2=\"8.851037861919808%\" y1=\"60\" y2=\"60\" id=\"_fb_lvldzwmiovqyajvbzpqf_ind_7\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.59218530113801%\" y=\"71\" font-size=\"12px\" id=\"_fs_lvldzwmiovqyajvbzpqf_ind_7\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.001</text><svg x=\"8.333332740356212%\" y=\"40\" height=\"20\" width=\"0.5177051215635959%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"8.851037861919808%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.851037861919808%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.851037861919808%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.851037861919808%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.851037861919808%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.851037861919808%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.851037861919808%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.851037861919808%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"11.580236034335753%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.333332740356212%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"11.580236034335753%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.851037861919808%\" y=\"40\" height=\"20\" width=\"2.729198172415945%\" onmouseover=\"document.getElementById('_tp_lvldzwmiovqyajvbzpqf_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_lvldzwmiovqyajvbzpqf_ind_4').style.opacity = 1;document.getElementById('_fb_lvldzwmiovqyajvbzpqf_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_lvldzwmiovqyajvbzpqf_ind_4').style.textDecoration = 'none';document.getElementById('_fs_lvldzwmiovqyajvbzpqf_ind_4').style.opacity = 0;document.getElementById('_fb_lvldzwmiovqyajvbzpqf_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"8.333332740356212%\" y=\"40\" height=\"20\" width=\"0.5177051215635959%\" onmouseover=\"document.getElementById('_tp_lvldzwmiovqyajvbzpqf_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_lvldzwmiovqyajvbzpqf_ind_7').style.opacity = 1;document.getElementById('_fb_lvldzwmiovqyajvbzpqf_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_lvldzwmiovqyajvbzpqf_ind_7').style.textDecoration = 'none';document.getElementById('_fs_lvldzwmiovqyajvbzpqf_ind_7').style.opacity = 0;document.getElementById('_fb_lvldzwmiovqyajvbzpqf_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"11.580236034335753%\" width=\"80.08642410958258%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"11.580236034335753%\" x2=\"38.5909938005064%\" y1=\"60\" y2=\"60\" id=\"_fb_lvldzwmiovqyajvbzpqf_ind_9\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"25.08561491742108%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_lvldzwmiovqyajvbzpqf_ind_9\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.038</text><svg x=\"11.580236034335753%\" y=\"40\" height=\"20\" width=\"27.01075776617065%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">greedy</text> </svg></svg><line x1=\"38.5909938005064%\" x2=\"57.57062795991933%\" y1=\"60\" y2=\"60\" id=\"_fb_lvldzwmiovqyajvbzpqf_ind_10\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"48.080810880212866%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_lvldzwmiovqyajvbzpqf_ind_10\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.027</text><svg x=\"38.5909938005064%\" y=\"40\" height=\"20\" width=\"18.979634159412925%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">wrong</text> </svg></svg><line x1=\"57.57062795991933%\" x2=\"69.63644435904386%\" y1=\"60\" y2=\"60\" id=\"_fb_lvldzwmiovqyajvbzpqf_ind_8\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"63.60353615948159%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_lvldzwmiovqyajvbzpqf_ind_8\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.017</text><svg x=\"57.57062795991933%\" y=\"40\" height=\"20\" width=\"12.065816399124536%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"69.63644435904386%\" x2=\"79.03086236987455%\" y1=\"60\" y2=\"60\" id=\"_fb_lvldzwmiovqyajvbzpqf_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"74.33365336445921%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_lvldzwmiovqyajvbzpqf_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.013</text><svg x=\"69.63644435904386%\" y=\"40\" height=\"20\" width=\"9.394418010830691%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">grabbing</text> </svg></svg><line x1=\"79.03086236987455%\" x2=\"85.70394917280606%\" y1=\"60\" y2=\"60\" id=\"_fb_lvldzwmiovqyajvbzpqf_ind_6\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"82.36740577134032%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_lvldzwmiovqyajvbzpqf_ind_6\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.009</text><svg x=\"79.03086236987455%\" y=\"40\" height=\"20\" width=\"6.673086802931508%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">post</text> </svg></svg><line x1=\"85.70394917280606%\" x2=\"88.1854833383642%\" y1=\"60\" y2=\"60\" id=\"_fb_lvldzwmiovqyajvbzpqf_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"86.94471625558512%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_lvldzwmiovqyajvbzpqf_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.003</text><svg x=\"85.70394917280606%\" y=\"40\" height=\"20\" width=\"2.4815341655581307%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><line x1=\"88.1854833383642%\" x2=\"90.51734961842041%\" y1=\"60\" y2=\"60\" id=\"_fb_lvldzwmiovqyajvbzpqf_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"89.35141647839231%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_lvldzwmiovqyajvbzpqf_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.003</text><svg x=\"88.1854833383642%\" y=\"40\" height=\"20\" width=\"2.331866280056218%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">im</text> </svg></svg><line x1=\"90.51734961842041%\" x2=\"91.66665542215534%\" y1=\"60\" y2=\"60\" id=\"_fb_lvldzwmiovqyajvbzpqf_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.09200252028788%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_lvldzwmiovqyajvbzpqf_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.002</text><svg x=\"90.51734961842041%\" y=\"40\" height=\"20\" width=\"1.1493058037349329%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">a</text> </svg></svg><line x1=\"91.66665542215534%\" x2=\"91.66665931553885%\" y1=\"60\" y2=\"60\" id=\"_fb_lvldzwmiovqyajvbzpqf_ind_11\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.6666573688471%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_lvldzwmiovqyajvbzpqf_ind_11\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"91.66665542215534%\" y=\"40\" height=\"20\" width=\"3.893383507147519e-06%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><line x1=\"91.66665931553885%\" x2=\"91.66666014391832%\" y1=\"60\" y2=\"60\" id=\"_fb_lvldzwmiovqyajvbzpqf_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.6666597297286%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_lvldzwmiovqyajvbzpqf_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"91.66665931553885%\" y=\"40\" height=\"20\" width=\"8.283794699082137e-07%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"38.5909938005064%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"38.5909938005064%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"38.5909938005064%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"38.5909938005064%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"38.5909938005064%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"38.5909938005064%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"38.5909938005064%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"38.5909938005064%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"57.57062795991933%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"57.57062795991933%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"57.57062795991933%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"57.57062795991933%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"57.57062795991933%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"57.57062795991933%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"57.57062795991933%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"57.57062795991933%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"69.63644435904386%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"69.63644435904386%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"69.63644435904386%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"69.63644435904386%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"69.63644435904386%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"69.63644435904386%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"69.63644435904386%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"69.63644435904386%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"79.03086236987455%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"79.03086236987455%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"79.03086236987455%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"79.03086236987455%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"79.03086236987455%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"79.03086236987455%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"79.03086236987455%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"79.03086236987455%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"85.70394917280606%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"85.70394917280606%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"85.70394917280606%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"85.70394917280606%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"85.70394917280606%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"85.70394917280606%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"85.70394917280606%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"85.70394917280606%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"88.1854833383642%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"88.1854833383642%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"88.1854833383642%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"88.1854833383642%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"88.1854833383642%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"88.1854833383642%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"88.1854833383642%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"88.1854833383642%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"90.51734961842041%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.51734961842041%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.51734961842041%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.51734961842041%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.51734961842041%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.51734961842041%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.51734961842041%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.51734961842041%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.66665542215534%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.66665542215534%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.66665542215534%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.66665542215534%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.66665542215534%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.66665542215534%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.66665542215534%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.66665542215534%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.66665931553885%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.66665931553885%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.66665931553885%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.66665931553885%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.66665931553885%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.66665931553885%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.66665931553885%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.66665931553885%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"11.580236034335753%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66666014391832%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"38.5909938005064%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"11.580236034335753%\" y=\"40\" height=\"20\" width=\"27.01075776617065%\" onmouseover=\"document.getElementById('_tp_lvldzwmiovqyajvbzpqf_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_lvldzwmiovqyajvbzpqf_ind_9').style.opacity = 1;document.getElementById('_fb_lvldzwmiovqyajvbzpqf_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_lvldzwmiovqyajvbzpqf_ind_9').style.textDecoration = 'none';document.getElementById('_fs_lvldzwmiovqyajvbzpqf_ind_9').style.opacity = 0;document.getElementById('_fb_lvldzwmiovqyajvbzpqf_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"57.57062795991933%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"38.5909938005064%\" y=\"40\" height=\"20\" width=\"18.979634159412925%\" onmouseover=\"document.getElementById('_tp_lvldzwmiovqyajvbzpqf_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_lvldzwmiovqyajvbzpqf_ind_10').style.opacity = 1;document.getElementById('_fb_lvldzwmiovqyajvbzpqf_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_lvldzwmiovqyajvbzpqf_ind_10').style.textDecoration = 'none';document.getElementById('_fs_lvldzwmiovqyajvbzpqf_ind_10').style.opacity = 0;document.getElementById('_fb_lvldzwmiovqyajvbzpqf_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"69.63644435904386%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"57.57062795991933%\" y=\"40\" height=\"20\" width=\"12.065816399124536%\" onmouseover=\"document.getElementById('_tp_lvldzwmiovqyajvbzpqf_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_lvldzwmiovqyajvbzpqf_ind_8').style.opacity = 1;document.getElementById('_fb_lvldzwmiovqyajvbzpqf_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_lvldzwmiovqyajvbzpqf_ind_8').style.textDecoration = 'none';document.getElementById('_fs_lvldzwmiovqyajvbzpqf_ind_8').style.opacity = 0;document.getElementById('_fb_lvldzwmiovqyajvbzpqf_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"79.03086236987455%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"69.63644435904386%\" y=\"40\" height=\"20\" width=\"9.394418010830691%\" onmouseover=\"document.getElementById('_tp_lvldzwmiovqyajvbzpqf_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_lvldzwmiovqyajvbzpqf_ind_2').style.opacity = 1;document.getElementById('_fb_lvldzwmiovqyajvbzpqf_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_lvldzwmiovqyajvbzpqf_ind_2').style.textDecoration = 'none';document.getElementById('_fs_lvldzwmiovqyajvbzpqf_ind_2').style.opacity = 0;document.getElementById('_fb_lvldzwmiovqyajvbzpqf_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"85.70394917280606%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"79.03086236987455%\" y=\"40\" height=\"20\" width=\"6.673086802931508%\" onmouseover=\"document.getElementById('_tp_lvldzwmiovqyajvbzpqf_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_lvldzwmiovqyajvbzpqf_ind_6').style.opacity = 1;document.getElementById('_fb_lvldzwmiovqyajvbzpqf_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_lvldzwmiovqyajvbzpqf_ind_6').style.textDecoration = 'none';document.getElementById('_fs_lvldzwmiovqyajvbzpqf_ind_6').style.opacity = 0;document.getElementById('_fb_lvldzwmiovqyajvbzpqf_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"88.1854833383642%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"85.70394917280606%\" y=\"40\" height=\"20\" width=\"2.4815341655581307%\" onmouseover=\"document.getElementById('_tp_lvldzwmiovqyajvbzpqf_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_lvldzwmiovqyajvbzpqf_ind_5').style.opacity = 1;document.getElementById('_fb_lvldzwmiovqyajvbzpqf_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_lvldzwmiovqyajvbzpqf_ind_5').style.textDecoration = 'none';document.getElementById('_fs_lvldzwmiovqyajvbzpqf_ind_5').style.opacity = 0;document.getElementById('_fb_lvldzwmiovqyajvbzpqf_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"90.51734961842041%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"88.1854833383642%\" y=\"40\" height=\"20\" width=\"2.331866280056218%\" onmouseover=\"document.getElementById('_tp_lvldzwmiovqyajvbzpqf_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_lvldzwmiovqyajvbzpqf_ind_1').style.opacity = 1;document.getElementById('_fb_lvldzwmiovqyajvbzpqf_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_lvldzwmiovqyajvbzpqf_ind_1').style.textDecoration = 'none';document.getElementById('_fs_lvldzwmiovqyajvbzpqf_ind_1').style.opacity = 0;document.getElementById('_fb_lvldzwmiovqyajvbzpqf_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66665542215534%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"90.51734961842041%\" y=\"40\" height=\"20\" width=\"1.1493058037349329%\" onmouseover=\"document.getElementById('_tp_lvldzwmiovqyajvbzpqf_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_lvldzwmiovqyajvbzpqf_ind_3').style.opacity = 1;document.getElementById('_fb_lvldzwmiovqyajvbzpqf_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_lvldzwmiovqyajvbzpqf_ind_3').style.textDecoration = 'none';document.getElementById('_fs_lvldzwmiovqyajvbzpqf_ind_3').style.opacity = 0;document.getElementById('_fb_lvldzwmiovqyajvbzpqf_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66665931553885%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.66665542215534%\" y=\"40\" height=\"20\" width=\"3.893383507147519e-06%\" onmouseover=\"document.getElementById('_tp_lvldzwmiovqyajvbzpqf_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_lvldzwmiovqyajvbzpqf_ind_11').style.opacity = 1;document.getElementById('_fb_lvldzwmiovqyajvbzpqf_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_lvldzwmiovqyajvbzpqf_ind_11').style.textDecoration = 'none';document.getElementById('_fs_lvldzwmiovqyajvbzpqf_ind_11').style.opacity = 0;document.getElementById('_fb_lvldzwmiovqyajvbzpqf_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"91.66665931553885%\" y=\"40\" height=\"20\" width=\"8.283794699082137e-07%\" onmouseover=\"document.getElementById('_tp_lvldzwmiovqyajvbzpqf_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_lvldzwmiovqyajvbzpqf_ind_0').style.opacity = 1;document.getElementById('_fb_lvldzwmiovqyajvbzpqf_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_lvldzwmiovqyajvbzpqf_ind_0').style.textDecoration = 'none';document.getElementById('_fs_lvldzwmiovqyajvbzpqf_ind_0').style.opacity = 0;document.getElementById('_fb_lvldzwmiovqyajvbzpqf_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_lvldzwmiovqyajvbzpqf_ind_0'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_lvldzwmiovqyajvbzpqf_ind_0').style.opacity = 1; document.getElementById('_fs_lvldzwmiovqyajvbzpqf_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_lvldzwmiovqyajvbzpqf_ind_0').style.opacity = 0; document.getElementById('_fs_lvldzwmiovqyajvbzpqf_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.003</div\n",
|
|
" ><div id='_tp_lvldzwmiovqyajvbzpqf_ind_1'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.08560110913052085); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_lvldzwmiovqyajvbzpqf_ind_1').style.opacity = 1; document.getElementById('_fs_lvldzwmiovqyajvbzpqf_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_lvldzwmiovqyajvbzpqf_ind_1').style.opacity = 0; document.getElementById('_fs_lvldzwmiovqyajvbzpqf_ind_1').style.opacity = 0;\"\n",
|
|
" >im </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.013</div\n",
|
|
" ><div id='_tp_lvldzwmiovqyajvbzpqf_ind_2'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.34573182808476927); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_lvldzwmiovqyajvbzpqf_ind_2').style.opacity = 1; document.getElementById('_fs_lvldzwmiovqyajvbzpqf_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_lvldzwmiovqyajvbzpqf_ind_2').style.opacity = 0; document.getElementById('_fs_lvldzwmiovqyajvbzpqf_ind_2').style.opacity = 0;\"\n",
|
|
" >grabbing </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.002</div\n",
|
|
" ><div id='_tp_lvldzwmiovqyajvbzpqf_ind_3'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03830461477520309); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_lvldzwmiovqyajvbzpqf_ind_3').style.opacity = 1; document.getElementById('_fs_lvldzwmiovqyajvbzpqf_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_lvldzwmiovqyajvbzpqf_ind_3').style.opacity = 0; document.getElementById('_fs_lvldzwmiovqyajvbzpqf_ind_3').style.opacity = 0;\"\n",
|
|
" >a </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.004</div\n",
|
|
" ><div id='_tp_lvldzwmiovqyajvbzpqf_ind_4'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.09348385818974037); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_lvldzwmiovqyajvbzpqf_ind_4').style.opacity = 1; document.getElementById('_fs_lvldzwmiovqyajvbzpqf_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_lvldzwmiovqyajvbzpqf_ind_4').style.opacity = 0; document.getElementById('_fs_lvldzwmiovqyajvbzpqf_ind_4').style.opacity = 0;\"\n",
|
|
" >minute </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.003</div\n",
|
|
" ><div id='_tp_lvldzwmiovqyajvbzpqf_ind_5'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.08560110913052085); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_lvldzwmiovqyajvbzpqf_ind_5').style.opacity = 1; document.getElementById('_fs_lvldzwmiovqyajvbzpqf_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_lvldzwmiovqyajvbzpqf_ind_5').style.opacity = 0; document.getElementById('_fs_lvldzwmiovqyajvbzpqf_ind_5').style.opacity = 0;\"\n",
|
|
" >to </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.009</div\n",
|
|
" ><div id='_tp_lvldzwmiovqyajvbzpqf_ind_6'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.2432560903149138); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_lvldzwmiovqyajvbzpqf_ind_6').style.opacity = 1; document.getElementById('_fs_lvldzwmiovqyajvbzpqf_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_lvldzwmiovqyajvbzpqf_ind_6').style.opacity = 0; document.getElementById('_fs_lvldzwmiovqyajvbzpqf_ind_6').style.opacity = 0;\"\n",
|
|
" >post </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.001</div\n",
|
|
" ><div id='_tp_lvldzwmiovqyajvbzpqf_ind_7'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.014656367597544035); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_lvldzwmiovqyajvbzpqf_ind_7').style.opacity = 1; document.getElementById('_fs_lvldzwmiovqyajvbzpqf_ind_7').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_lvldzwmiovqyajvbzpqf_ind_7').style.opacity = 0; document.getElementById('_fs_lvldzwmiovqyajvbzpqf_ind_7').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.017</div\n",
|
|
" ><div id='_tp_lvldzwmiovqyajvbzpqf_ind_8'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.4482075658546247); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_lvldzwmiovqyajvbzpqf_ind_8').style.opacity = 1; document.getElementById('_fs_lvldzwmiovqyajvbzpqf_ind_8').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_lvldzwmiovqyajvbzpqf_ind_8').style.opacity = 0; document.getElementById('_fs_lvldzwmiovqyajvbzpqf_ind_8').style.opacity = 0;\"\n",
|
|
" >feel </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.038</div\n",
|
|
" ><div id='_tp_lvldzwmiovqyajvbzpqf_ind_9'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 1.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_lvldzwmiovqyajvbzpqf_ind_9').style.opacity = 1; document.getElementById('_fs_lvldzwmiovqyajvbzpqf_ind_9').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_lvldzwmiovqyajvbzpqf_ind_9').style.opacity = 0; document.getElementById('_fs_lvldzwmiovqyajvbzpqf_ind_9').style.opacity = 0;\"\n",
|
|
" >greedy </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.027</div\n",
|
|
" ><div id='_tp_lvldzwmiovqyajvbzpqf_ind_10'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.7004555357496535); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_lvldzwmiovqyajvbzpqf_ind_10').style.opacity = 1; document.getElementById('_fs_lvldzwmiovqyajvbzpqf_ind_10').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_lvldzwmiovqyajvbzpqf_ind_10').style.opacity = 0; document.getElementById('_fs_lvldzwmiovqyajvbzpqf_ind_10').style.opacity = 0;\"\n",
|
|
" >wrong</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_lvldzwmiovqyajvbzpqf_ind_11'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_lvldzwmiovqyajvbzpqf_ind_11').style.opacity = 1; document.getElementById('_fs_lvldzwmiovqyajvbzpqf_ind_11').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_lvldzwmiovqyajvbzpqf_ind_11').style.opacity = 0; document.getElementById('_fs_lvldzwmiovqyajvbzpqf_ind_11').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_unvxfbqcaujtzhoysnxx_output_3' style='display: none';><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"48.705281698548966%\" y1=\"33\" x2=\"48.705281698548966%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"48.705281698548966%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.3</text><line x1=\"37.053446541506865%\" y1=\"33\" x2=\"37.053446541506865%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"37.053446541506865%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.1</text><line x1=\"25.40161138446477%\" y1=\"33\" x2=\"25.40161138446477%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"25.40161138446477%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.1</text><line x1=\"13.749776227422668%\" y1=\"33\" x2=\"13.749776227422668%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"13.749776227422668%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.3</text><line x1=\"60.357116855591066%\" y1=\"33\" x2=\"60.357116855591066%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"60.357116855591066%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.5</text><line x1=\"72.00895201263315%\" y1=\"33\" x2=\"72.00895201263315%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"72.00895201263315%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.7</text><line x1=\"83.66078716967526%\" y1=\"33\" x2=\"83.66078716967526%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"83.66078716967526%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.9</text><line x1=\"44.648889749881306%\" y1=\"33\" x2=\"44.648889749881306%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"44.648889749881306%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.230373</text><text x=\"44.648889749881306%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.230373</text><text x=\"44.648889749881306%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"88.98931176225953%\" y1=\"33\" x2=\"88.98931176225953%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"88.98931176225953%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.991462</text><text x=\"88.98931176225953%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.991462</text><text x=\"88.98931176225953%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">anger</tspan>(inputs)</text><rect x=\"43.083672843642184%\" width=\"45.90563891861735%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"56.65617116924807%\" x2=\"88.98931176225953%\" y1=\"60\" y2=\"60\" id=\"_fb_dujlofusdvjhrvhvsgwd_ind_9\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"72.82274146575381%\" y=\"71\" font-size=\"12px\" id=\"_fs_dujlofusdvjhrvhvsgwd_ind_9\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.555</text><svg x=\"56.65617116924807%\" y=\"40\" height=\"20\" width=\"32.333140593011464%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">greedy</text> </svg></svg><line x1=\"46.79471647516478%\" x2=\"56.65617116924807%\" y1=\"60\" y2=\"60\" id=\"_fb_dujlofusdvjhrvhvsgwd_ind_10\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"51.72544382220643%\" y=\"71\" font-size=\"12px\" id=\"_fs_dujlofusdvjhrvhvsgwd_ind_10\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.169</text><svg x=\"46.79471647516478%\" y=\"40\" height=\"20\" width=\"9.861454694083285%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">wrong</text> </svg></svg><line x1=\"45.3389816425398%\" x2=\"46.79471647516478%\" y1=\"60\" y2=\"60\" id=\"_fb_dujlofusdvjhrvhvsgwd_ind_2\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"46.06684905885229%\" y=\"71\" font-size=\"12px\" id=\"_fs_dujlofusdvjhrvhvsgwd_ind_2\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.025</text><svg x=\"45.3389816425398%\" y=\"40\" height=\"20\" width=\"1.4557348326249837%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">grabbing</text> </svg></svg><line x1=\"43.97109206119082%\" x2=\"45.3389816425398%\" y1=\"60\" y2=\"60\" id=\"_fb_dujlofusdvjhrvhvsgwd_ind_6\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"44.655036851865304%\" y=\"71\" font-size=\"12px\" id=\"_fs_dujlofusdvjhrvhvsgwd_ind_6\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.023</text><svg x=\"43.97109206119082%\" y=\"40\" height=\"20\" width=\"1.367889581348983%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">post</text> </svg></svg><line x1=\"43.66383904857878%\" x2=\"43.97109206119082%\" y1=\"60\" y2=\"60\" id=\"_fb_dujlofusdvjhrvhvsgwd_ind_4\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"43.8174655548848%\" y=\"71\" font-size=\"12px\" id=\"_fs_dujlofusdvjhrvhvsgwd_ind_4\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.005</text><svg x=\"43.66383904857878%\" y=\"40\" height=\"20\" width=\"0.30725301261203697%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">minute</text> </svg></svg><line x1=\"43.37208599753453%\" x2=\"43.66383904857878%\" y1=\"60\" y2=\"60\" id=\"_fb_dujlofusdvjhrvhvsgwd_ind_1\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"43.51796252305665%\" y=\"71\" font-size=\"12px\" id=\"_fs_dujlofusdvjhrvhvsgwd_ind_1\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.005</text><svg x=\"43.37208599753453%\" y=\"40\" height=\"20\" width=\"0.2917530510442461%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">im</text> </svg></svg><line x1=\"43.083674037320066%\" x2=\"43.37208599753453%\" y1=\"60\" y2=\"60\" id=\"_fb_dujlofusdvjhrvhvsgwd_ind_8\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"43.227880017427296%\" y=\"71\" font-size=\"12px\" id=\"_fs_dujlofusdvjhrvhvsgwd_ind_8\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.005</text><svg x=\"43.083674037320066%\" y=\"40\" height=\"20\" width=\"0.2884119602144679%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"43.083672843642184%\" x2=\"43.083674037320066%\" y1=\"60\" y2=\"60\" id=\"_fb_dujlofusdvjhrvhvsgwd_ind_11\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"43.08367344048112%\" y=\"71\" font-size=\"12px\" id=\"_fs_dujlofusdvjhrvhvsgwd_ind_11\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"43.083672843642184%\" y=\"40\" height=\"20\" width=\"1.1936778818721905e-06%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"56.65617116924807%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"56.65617116924807%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"56.65617116924807%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"56.65617116924807%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"56.65617116924807%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"56.65617116924807%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"56.65617116924807%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"56.65617116924807%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"46.79471647516478%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"46.79471647516478%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"46.79471647516478%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"46.79471647516478%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"46.79471647516478%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"46.79471647516478%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"46.79471647516478%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"46.79471647516478%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"45.3389816425398%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"45.3389816425398%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"45.3389816425398%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"45.3389816425398%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"45.3389816425398%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"45.3389816425398%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"45.3389816425398%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"45.3389816425398%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"43.97109206119082%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"43.97109206119082%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"43.97109206119082%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"43.97109206119082%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"43.97109206119082%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"43.97109206119082%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"43.97109206119082%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"43.97109206119082%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"43.66383904857878%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"43.66383904857878%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"43.66383904857878%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"43.66383904857878%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"43.66383904857878%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"43.66383904857878%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"43.66383904857878%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"43.66383904857878%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"43.37208599753453%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"43.37208599753453%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"43.37208599753453%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"43.37208599753453%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"43.37208599753453%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"43.37208599753453%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"43.37208599753453%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"43.37208599753453%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"43.083674037320066%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"43.083674037320066%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"43.083674037320066%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"43.083674037320066%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"43.083674037320066%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"43.083674037320066%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"43.083674037320066%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"43.083674037320066%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"88.98931176225953%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"43.083672843642184%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"88.98931176225953%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"56.65617116924807%\" y=\"40\" height=\"20\" width=\"32.333140593011464%\" onmouseover=\"document.getElementById('_tp_dujlofusdvjhrvhvsgwd_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_dujlofusdvjhrvhvsgwd_ind_9').style.opacity = 1;document.getElementById('_fb_dujlofusdvjhrvhvsgwd_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dujlofusdvjhrvhvsgwd_ind_9').style.textDecoration = 'none';document.getElementById('_fs_dujlofusdvjhrvhvsgwd_ind_9').style.opacity = 0;document.getElementById('_fb_dujlofusdvjhrvhvsgwd_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"56.65617116924807%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"46.79471647516478%\" y=\"40\" height=\"20\" width=\"9.861454694083285%\" onmouseover=\"document.getElementById('_tp_dujlofusdvjhrvhvsgwd_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_dujlofusdvjhrvhvsgwd_ind_10').style.opacity = 1;document.getElementById('_fb_dujlofusdvjhrvhvsgwd_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dujlofusdvjhrvhvsgwd_ind_10').style.textDecoration = 'none';document.getElementById('_fs_dujlofusdvjhrvhvsgwd_ind_10').style.opacity = 0;document.getElementById('_fb_dujlofusdvjhrvhvsgwd_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"46.79471647516478%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"45.3389816425398%\" y=\"40\" height=\"20\" width=\"1.4557348326249837%\" onmouseover=\"document.getElementById('_tp_dujlofusdvjhrvhvsgwd_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_dujlofusdvjhrvhvsgwd_ind_2').style.opacity = 1;document.getElementById('_fb_dujlofusdvjhrvhvsgwd_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dujlofusdvjhrvhvsgwd_ind_2').style.textDecoration = 'none';document.getElementById('_fs_dujlofusdvjhrvhvsgwd_ind_2').style.opacity = 0;document.getElementById('_fb_dujlofusdvjhrvhvsgwd_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"45.3389816425398%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"43.97109206119082%\" y=\"40\" height=\"20\" width=\"1.367889581348983%\" onmouseover=\"document.getElementById('_tp_dujlofusdvjhrvhvsgwd_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_dujlofusdvjhrvhvsgwd_ind_6').style.opacity = 1;document.getElementById('_fb_dujlofusdvjhrvhvsgwd_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dujlofusdvjhrvhvsgwd_ind_6').style.textDecoration = 'none';document.getElementById('_fs_dujlofusdvjhrvhvsgwd_ind_6').style.opacity = 0;document.getElementById('_fb_dujlofusdvjhrvhvsgwd_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"43.97109206119082%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"43.66383904857878%\" y=\"40\" height=\"20\" width=\"0.30725301261203697%\" onmouseover=\"document.getElementById('_tp_dujlofusdvjhrvhvsgwd_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_dujlofusdvjhrvhvsgwd_ind_4').style.opacity = 1;document.getElementById('_fb_dujlofusdvjhrvhvsgwd_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dujlofusdvjhrvhvsgwd_ind_4').style.textDecoration = 'none';document.getElementById('_fs_dujlofusdvjhrvhvsgwd_ind_4').style.opacity = 0;document.getElementById('_fb_dujlofusdvjhrvhvsgwd_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"43.66383904857878%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"43.37208599753453%\" y=\"40\" height=\"20\" width=\"0.2917530510442461%\" onmouseover=\"document.getElementById('_tp_dujlofusdvjhrvhvsgwd_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_dujlofusdvjhrvhvsgwd_ind_1').style.opacity = 1;document.getElementById('_fb_dujlofusdvjhrvhvsgwd_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dujlofusdvjhrvhvsgwd_ind_1').style.textDecoration = 'none';document.getElementById('_fs_dujlofusdvjhrvhvsgwd_ind_1').style.opacity = 0;document.getElementById('_fb_dujlofusdvjhrvhvsgwd_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"43.37208599753453%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"43.083674037320066%\" y=\"40\" height=\"20\" width=\"0.2884119602144679%\" onmouseover=\"document.getElementById('_tp_dujlofusdvjhrvhvsgwd_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_dujlofusdvjhrvhvsgwd_ind_8').style.opacity = 1;document.getElementById('_fb_dujlofusdvjhrvhvsgwd_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dujlofusdvjhrvhvsgwd_ind_8').style.textDecoration = 'none';document.getElementById('_fs_dujlofusdvjhrvhvsgwd_ind_8').style.opacity = 0;document.getElementById('_fb_dujlofusdvjhrvhvsgwd_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"43.083672843642184%\" y=\"40\" height=\"20\" width=\"1.1936778818721905e-06%\" onmouseover=\"document.getElementById('_tp_dujlofusdvjhrvhvsgwd_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_dujlofusdvjhrvhvsgwd_ind_11').style.opacity = 1;document.getElementById('_fb_dujlofusdvjhrvhvsgwd_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dujlofusdvjhrvhvsgwd_ind_11').style.textDecoration = 'none';document.getElementById('_fs_dujlofusdvjhrvhvsgwd_ind_11').style.opacity = 0;document.getElementById('_fb_dujlofusdvjhrvhvsgwd_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"88.98931176225953%\" width=\"1.5652169062391228%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"88.98931176225953%\" x2=\"89.92983313757554%\" y1=\"60\" y2=\"60\" id=\"_fb_dujlofusdvjhrvhvsgwd_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"89.45957244991754%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dujlofusdvjhrvhvsgwd_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.016</text><svg x=\"88.98931176225953%\" y=\"40\" height=\"20\" width=\"0.9405213753160098%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><line x1=\"89.92983313757554%\" x2=\"90.292609697105%\" y1=\"60\" y2=\"60\" id=\"_fb_dujlofusdvjhrvhvsgwd_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"90.11122141734026%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dujlofusdvjhrvhvsgwd_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.006</text><svg x=\"89.92983313757554%\" y=\"40\" height=\"20\" width=\"0.36277655952945054%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">a</text> </svg></svg><line x1=\"90.292609697105%\" x2=\"90.55452818017588%\" y1=\"60\" y2=\"60\" id=\"_fb_dujlofusdvjhrvhvsgwd_ind_7\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"90.42356893864044%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dujlofusdvjhrvhvsgwd_ind_7\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.004</text><svg x=\"90.292609697105%\" y=\"40\" height=\"20\" width=\"0.26191848307088605%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"90.55452818017588%\" x2=\"90.55452866849866%\" y1=\"60\" y2=\"60\" id=\"_fb_dujlofusdvjhrvhvsgwd_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"90.55452842433726%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dujlofusdvjhrvhvsgwd_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"90.55452818017588%\" y=\"40\" height=\"20\" width=\"4.88322783098738e-07%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"89.92983313757554%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"89.92983313757554%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"89.92983313757554%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"89.92983313757554%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"89.92983313757554%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"89.92983313757554%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"89.92983313757554%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"89.92983313757554%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"90.292609697105%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.292609697105%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.292609697105%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.292609697105%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.292609697105%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.292609697105%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.292609697105%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.292609697105%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"90.55452818017588%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.55452818017588%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.55452818017588%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.55452818017588%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.55452818017588%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.55452818017588%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.55452818017588%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.55452818017588%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"88.98931176225953%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"90.55452866849866%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"89.92983313757554%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"88.98931176225953%\" y=\"40\" height=\"20\" width=\"0.9405213753160098%\" onmouseover=\"document.getElementById('_tp_dujlofusdvjhrvhvsgwd_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_dujlofusdvjhrvhvsgwd_ind_5').style.opacity = 1;document.getElementById('_fb_dujlofusdvjhrvhvsgwd_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dujlofusdvjhrvhvsgwd_ind_5').style.textDecoration = 'none';document.getElementById('_fs_dujlofusdvjhrvhvsgwd_ind_5').style.opacity = 0;document.getElementById('_fb_dujlofusdvjhrvhvsgwd_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"90.292609697105%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"89.92983313757554%\" y=\"40\" height=\"20\" width=\"0.36277655952945054%\" onmouseover=\"document.getElementById('_tp_dujlofusdvjhrvhvsgwd_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_dujlofusdvjhrvhvsgwd_ind_3').style.opacity = 1;document.getElementById('_fb_dujlofusdvjhrvhvsgwd_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dujlofusdvjhrvhvsgwd_ind_3').style.textDecoration = 'none';document.getElementById('_fs_dujlofusdvjhrvhvsgwd_ind_3').style.opacity = 0;document.getElementById('_fb_dujlofusdvjhrvhvsgwd_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"90.55452818017588%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"90.292609697105%\" y=\"40\" height=\"20\" width=\"0.26191848307088605%\" onmouseover=\"document.getElementById('_tp_dujlofusdvjhrvhvsgwd_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_dujlofusdvjhrvhvsgwd_ind_7').style.opacity = 1;document.getElementById('_fb_dujlofusdvjhrvhvsgwd_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dujlofusdvjhrvhvsgwd_ind_7').style.textDecoration = 'none';document.getElementById('_fs_dujlofusdvjhrvhvsgwd_ind_7').style.opacity = 0;document.getElementById('_fb_dujlofusdvjhrvhvsgwd_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"90.55452818017588%\" y=\"40\" height=\"20\" width=\"4.88322783098738e-07%\" onmouseover=\"document.getElementById('_tp_dujlofusdvjhrvhvsgwd_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_dujlofusdvjhrvhvsgwd_ind_0').style.opacity = 1;document.getElementById('_fb_dujlofusdvjhrvhvsgwd_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dujlofusdvjhrvhvsgwd_ind_0').style.textDecoration = 'none';document.getElementById('_fs_dujlofusdvjhrvhvsgwd_ind_0').style.opacity = 0;document.getElementById('_fb_dujlofusdvjhrvhvsgwd_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_dujlofusdvjhrvhvsgwd_ind_0'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dujlofusdvjhrvhvsgwd_ind_0').style.opacity = 1; document.getElementById('_fs_dujlofusdvjhrvhvsgwd_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dujlofusdvjhrvhvsgwd_ind_0').style.opacity = 0; document.getElementById('_fs_dujlofusdvjhrvhvsgwd_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.005</div\n",
|
|
" ><div id='_tp_dujlofusdvjhrvhvsgwd_ind_1'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dujlofusdvjhrvhvsgwd_ind_1').style.opacity = 1; document.getElementById('_fs_dujlofusdvjhrvhvsgwd_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dujlofusdvjhrvhvsgwd_ind_1').style.opacity = 0; document.getElementById('_fs_dujlofusdvjhrvhvsgwd_ind_1').style.opacity = 0;\"\n",
|
|
" >im </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.025</div\n",
|
|
" ><div id='_tp_dujlofusdvjhrvhvsgwd_ind_2'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.02253911665676371); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dujlofusdvjhrvhvsgwd_ind_2').style.opacity = 1; document.getElementById('_fs_dujlofusdvjhrvhvsgwd_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dujlofusdvjhrvhvsgwd_ind_2').style.opacity = 0; document.getElementById('_fs_dujlofusdvjhrvhvsgwd_ind_2').style.opacity = 0;\"\n",
|
|
" >grabbing </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.006</div\n",
|
|
" ><div id='_tp_dujlofusdvjhrvhvsgwd_ind_3'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dujlofusdvjhrvhvsgwd_ind_3').style.opacity = 1; document.getElementById('_fs_dujlofusdvjhrvhvsgwd_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dujlofusdvjhrvhvsgwd_ind_3').style.opacity = 0; document.getElementById('_fs_dujlofusdvjhrvhvsgwd_ind_3').style.opacity = 0;\"\n",
|
|
" >a </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.005</div\n",
|
|
" ><div id='_tp_dujlofusdvjhrvhvsgwd_ind_4'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dujlofusdvjhrvhvsgwd_ind_4').style.opacity = 1; document.getElementById('_fs_dujlofusdvjhrvhvsgwd_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dujlofusdvjhrvhvsgwd_ind_4').style.opacity = 0; document.getElementById('_fs_dujlofusdvjhrvhvsgwd_ind_4').style.opacity = 0;\"\n",
|
|
" >minute </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.016</div\n",
|
|
" ><div id='_tp_dujlofusdvjhrvhvsgwd_ind_5'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dujlofusdvjhrvhvsgwd_ind_5').style.opacity = 1; document.getElementById('_fs_dujlofusdvjhrvhvsgwd_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dujlofusdvjhrvhvsgwd_ind_5').style.opacity = 0; document.getElementById('_fs_dujlofusdvjhrvhvsgwd_ind_5').style.opacity = 0;\"\n",
|
|
" >to </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.023</div\n",
|
|
" ><div id='_tp_dujlofusdvjhrvhvsgwd_ind_6'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.02253911665676371); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dujlofusdvjhrvhvsgwd_ind_6').style.opacity = 1; document.getElementById('_fs_dujlofusdvjhrvhvsgwd_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dujlofusdvjhrvhvsgwd_ind_6').style.opacity = 0; document.getElementById('_fs_dujlofusdvjhrvhvsgwd_ind_6').style.opacity = 0;\"\n",
|
|
" >post </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.004</div\n",
|
|
" ><div id='_tp_dujlofusdvjhrvhvsgwd_ind_7'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dujlofusdvjhrvhvsgwd_ind_7').style.opacity = 1; document.getElementById('_fs_dujlofusdvjhrvhvsgwd_ind_7').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dujlofusdvjhrvhvsgwd_ind_7').style.opacity = 0; document.getElementById('_fs_dujlofusdvjhrvhvsgwd_ind_7').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.005</div\n",
|
|
" ><div id='_tp_dujlofusdvjhrvhvsgwd_ind_8'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dujlofusdvjhrvhvsgwd_ind_8').style.opacity = 1; document.getElementById('_fs_dujlofusdvjhrvhvsgwd_ind_8').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dujlofusdvjhrvhvsgwd_ind_8').style.opacity = 0; document.getElementById('_fs_dujlofusdvjhrvhvsgwd_ind_8').style.opacity = 0;\"\n",
|
|
" >feel </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.555</div\n",
|
|
" ><div id='_tp_dujlofusdvjhrvhvsgwd_ind_9'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.6531590413943356); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dujlofusdvjhrvhvsgwd_ind_9').style.opacity = 1; document.getElementById('_fs_dujlofusdvjhrvhvsgwd_ind_9').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dujlofusdvjhrvhvsgwd_ind_9').style.opacity = 0; document.getElementById('_fs_dujlofusdvjhrvhvsgwd_ind_9').style.opacity = 0;\"\n",
|
|
" >greedy </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.169</div\n",
|
|
" ><div id='_tp_dujlofusdvjhrvhvsgwd_ind_10'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.1959595959595959); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dujlofusdvjhrvhvsgwd_ind_10').style.opacity = 1; document.getElementById('_fs_dujlofusdvjhrvhvsgwd_ind_10').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dujlofusdvjhrvhvsgwd_ind_10').style.opacity = 0; document.getElementById('_fs_dujlofusdvjhrvhvsgwd_ind_10').style.opacity = 0;\"\n",
|
|
" >wrong</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_dujlofusdvjhrvhvsgwd_ind_11'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dujlofusdvjhrvhvsgwd_ind_11').style.opacity = 1; document.getElementById('_fs_dujlofusdvjhrvhvsgwd_ind_11').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dujlofusdvjhrvhvsgwd_ind_11').style.opacity = 0; document.getElementById('_fs_dujlofusdvjhrvhvsgwd_ind_11').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_unvxfbqcaujtzhoysnxx_output_3_zoom' style='display: none;'><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"48.88340857476887%\" y1=\"33\" x2=\"48.88340857476887%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"48.88340857476887%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.6</text><line x1=\"38.65622564026652%\" y1=\"33\" x2=\"38.65622564026652%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"38.65622564026652%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.5</text><line x1=\"28.429042705764164%\" y1=\"33\" x2=\"28.429042705764164%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"28.429042705764164%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.4</text><line x1=\"18.20185977126181%\" y1=\"33\" x2=\"18.20185977126181%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"18.20185977126181%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.3</text><line x1=\"7.97467683675946%\" y1=\"33\" x2=\"7.97467683675946%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"7.97467683675946%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.2</text><line x1=\"59.11059150927122%\" y1=\"33\" x2=\"59.11059150927122%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"59.11059150927122%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.7</text><line x1=\"69.33777444377357%\" y1=\"33\" x2=\"69.33777444377357%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"69.33777444377357%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.8</text><line x1=\"79.56495737827593%\" y1=\"33\" x2=\"79.56495737827593%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"79.56495737827593%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.9</text><line x1=\"89.79214031277827%\" y1=\"33\" x2=\"89.79214031277827%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"89.79214031277827%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">1</text><line x1=\"11.081013663514783%\" y1=\"33\" x2=\"11.081013663514783%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"11.081013663514783%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.230373</text><text x=\"11.081013663514783%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.230373</text><text x=\"11.081013663514783%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"88.91898531376692%\" y1=\"33\" x2=\"88.91898531376692%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"88.91898531376692%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.991462</text><text x=\"88.91898531376692%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.991462</text><text x=\"88.91898531376692%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">anger</tspan>(inputs)</text><rect x=\"8.333333248106811%\" width=\"80.58565206566011%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"32.15935230576669%\" x2=\"88.91898531376692%\" y1=\"60\" y2=\"60\" id=\"_fb_zjinafmiudpqluoxjslm_ind_9\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"60.53916880976681%\" y=\"71\" font-size=\"12px\" id=\"_fs_zjinafmiudpqluoxjslm_ind_9\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.555</text><svg x=\"32.15935230576669%\" y=\"40\" height=\"20\" width=\"56.759633008000236%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">greedy</text> </svg></svg><line x1=\"14.847933152065004%\" x2=\"32.15935230576669%\" y1=\"60\" y2=\"60\" id=\"_fb_zjinafmiudpqluoxjslm_ind_10\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"23.503642728915846%\" y=\"71\" font-size=\"12px\" id=\"_fs_zjinafmiudpqluoxjslm_ind_10\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.169</text><svg x=\"14.847933152065004%\" y=\"40\" height=\"20\" width=\"17.311419153701685%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">wrong</text> </svg></svg><line x1=\"12.29244446951445%\" x2=\"14.847933152065004%\" y1=\"60\" y2=\"60\" id=\"_fb_zjinafmiudpqluoxjslm_ind_2\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"13.570188810789727%\" y=\"71\" font-size=\"12px\" id=\"_fs_zjinafmiudpqluoxjslm_ind_2\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.025</text><svg x=\"12.29244446951445%\" y=\"40\" height=\"20\" width=\"2.5554886825505534%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">grabbing</text> </svg></svg><line x1=\"9.891164878084444%\" x2=\"12.29244446951445%\" y1=\"60\" y2=\"60\" id=\"_fb_zjinafmiudpqluoxjslm_ind_6\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"11.091804673799448%\" y=\"71\" font-size=\"12px\" id=\"_fs_zjinafmiudpqluoxjslm_ind_6\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.023</text><svg x=\"9.891164878084444%\" y=\"40\" height=\"20\" width=\"2.401279591430006%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">post</text> </svg></svg><line x1=\"9.351793573082567%\" x2=\"9.891164878084444%\" y1=\"60\" y2=\"60\" id=\"_fb_zjinafmiudpqluoxjslm_ind_4\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"9.621479225583506%\" y=\"71\" font-size=\"12px\" id=\"_fs_zjinafmiudpqluoxjslm_ind_4\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.005</text><svg x=\"9.351793573082567%\" y=\"40\" height=\"20\" width=\"0.5393713050018771%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">minute</text> </svg></svg><line x1=\"8.839631877604871%\" x2=\"9.351793573082567%\" y1=\"60\" y2=\"60\" id=\"_fb_zjinafmiudpqluoxjslm_ind_1\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"9.09571272534372%\" y=\"71\" font-size=\"12px\" id=\"_fs_zjinafmiudpqluoxjslm_ind_1\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.005</text><svg x=\"8.839631877604871%\" y=\"40\" height=\"20\" width=\"0.5121616954776957%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">im</text> </svg></svg><line x1=\"8.333335343564206%\" x2=\"8.839631877604871%\" y1=\"60\" y2=\"60\" id=\"_fb_zjinafmiudpqluoxjslm_ind_8\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.586483610584539%\" y=\"71\" font-size=\"12px\" id=\"_fs_zjinafmiudpqluoxjslm_ind_8\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.005</text><svg x=\"8.333335343564206%\" y=\"40\" height=\"20\" width=\"0.5062965340406649%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"8.333333248106811%\" x2=\"8.333335343564206%\" y1=\"60\" y2=\"60\" id=\"_fb_zjinafmiudpqluoxjslm_ind_11\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.33333429583551%\" y=\"71\" font-size=\"12px\" id=\"_fs_zjinafmiudpqluoxjslm_ind_11\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"8.333333248106811%\" y=\"40\" height=\"20\" width=\"2.095457395157041e-06%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"32.15935230576669%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"32.15935230576669%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"32.15935230576669%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"32.15935230576669%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"32.15935230576669%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"32.15935230576669%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"32.15935230576669%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"32.15935230576669%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"14.847933152065004%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"14.847933152065004%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"14.847933152065004%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"14.847933152065004%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"14.847933152065004%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"14.847933152065004%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"14.847933152065004%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"14.847933152065004%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"12.29244446951445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"12.29244446951445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"12.29244446951445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"12.29244446951445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"12.29244446951445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"12.29244446951445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"12.29244446951445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"12.29244446951445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"9.891164878084444%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"9.891164878084444%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"9.891164878084444%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"9.891164878084444%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"9.891164878084444%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"9.891164878084444%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"9.891164878084444%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"9.891164878084444%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"9.351793573082567%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"9.351793573082567%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"9.351793573082567%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"9.351793573082567%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"9.351793573082567%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"9.351793573082567%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"9.351793573082567%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"9.351793573082567%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.839631877604871%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.839631877604871%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.839631877604871%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.839631877604871%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.839631877604871%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.839631877604871%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.839631877604871%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.839631877604871%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.333335343564206%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.333335343564206%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.333335343564206%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.333335343564206%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.333335343564206%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.333335343564206%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.333335343564206%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.333335343564206%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"88.91898531376692%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.333333248106811%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"88.91898531376692%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"32.15935230576669%\" y=\"40\" height=\"20\" width=\"56.759633008000236%\" onmouseover=\"document.getElementById('_tp_zjinafmiudpqluoxjslm_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_zjinafmiudpqluoxjslm_ind_9').style.opacity = 1;document.getElementById('_fb_zjinafmiudpqluoxjslm_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zjinafmiudpqluoxjslm_ind_9').style.textDecoration = 'none';document.getElementById('_fs_zjinafmiudpqluoxjslm_ind_9').style.opacity = 0;document.getElementById('_fb_zjinafmiudpqluoxjslm_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"32.15935230576669%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"14.847933152065004%\" y=\"40\" height=\"20\" width=\"17.311419153701685%\" onmouseover=\"document.getElementById('_tp_zjinafmiudpqluoxjslm_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_zjinafmiudpqluoxjslm_ind_10').style.opacity = 1;document.getElementById('_fb_zjinafmiudpqluoxjslm_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zjinafmiudpqluoxjslm_ind_10').style.textDecoration = 'none';document.getElementById('_fs_zjinafmiudpqluoxjslm_ind_10').style.opacity = 0;document.getElementById('_fb_zjinafmiudpqluoxjslm_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"14.847933152065004%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"12.29244446951445%\" y=\"40\" height=\"20\" width=\"2.5554886825505534%\" onmouseover=\"document.getElementById('_tp_zjinafmiudpqluoxjslm_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_zjinafmiudpqluoxjslm_ind_2').style.opacity = 1;document.getElementById('_fb_zjinafmiudpqluoxjslm_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zjinafmiudpqluoxjslm_ind_2').style.textDecoration = 'none';document.getElementById('_fs_zjinafmiudpqluoxjslm_ind_2').style.opacity = 0;document.getElementById('_fb_zjinafmiudpqluoxjslm_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"12.29244446951445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"9.891164878084444%\" y=\"40\" height=\"20\" width=\"2.401279591430006%\" onmouseover=\"document.getElementById('_tp_zjinafmiudpqluoxjslm_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_zjinafmiudpqluoxjslm_ind_6').style.opacity = 1;document.getElementById('_fb_zjinafmiudpqluoxjslm_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zjinafmiudpqluoxjslm_ind_6').style.textDecoration = 'none';document.getElementById('_fs_zjinafmiudpqluoxjslm_ind_6').style.opacity = 0;document.getElementById('_fb_zjinafmiudpqluoxjslm_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"9.891164878084444%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"9.351793573082567%\" y=\"40\" height=\"20\" width=\"0.5393713050018771%\" onmouseover=\"document.getElementById('_tp_zjinafmiudpqluoxjslm_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_zjinafmiudpqluoxjslm_ind_4').style.opacity = 1;document.getElementById('_fb_zjinafmiudpqluoxjslm_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zjinafmiudpqluoxjslm_ind_4').style.textDecoration = 'none';document.getElementById('_fs_zjinafmiudpqluoxjslm_ind_4').style.opacity = 0;document.getElementById('_fb_zjinafmiudpqluoxjslm_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"9.351793573082567%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.839631877604871%\" y=\"40\" height=\"20\" width=\"0.5121616954776957%\" onmouseover=\"document.getElementById('_tp_zjinafmiudpqluoxjslm_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_zjinafmiudpqluoxjslm_ind_1').style.opacity = 1;document.getElementById('_fb_zjinafmiudpqluoxjslm_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zjinafmiudpqluoxjslm_ind_1').style.textDecoration = 'none';document.getElementById('_fs_zjinafmiudpqluoxjslm_ind_1').style.opacity = 0;document.getElementById('_fb_zjinafmiudpqluoxjslm_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"8.839631877604871%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.333335343564206%\" y=\"40\" height=\"20\" width=\"0.5062965340406649%\" onmouseover=\"document.getElementById('_tp_zjinafmiudpqluoxjslm_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_zjinafmiudpqluoxjslm_ind_8').style.opacity = 1;document.getElementById('_fb_zjinafmiudpqluoxjslm_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zjinafmiudpqluoxjslm_ind_8').style.textDecoration = 'none';document.getElementById('_fs_zjinafmiudpqluoxjslm_ind_8').style.opacity = 0;document.getElementById('_fb_zjinafmiudpqluoxjslm_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"8.333333248106811%\" y=\"40\" height=\"20\" width=\"2.095457395157041e-06%\" onmouseover=\"document.getElementById('_tp_zjinafmiudpqluoxjslm_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_zjinafmiudpqluoxjslm_ind_11').style.opacity = 1;document.getElementById('_fb_zjinafmiudpqluoxjslm_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zjinafmiudpqluoxjslm_ind_11').style.textDecoration = 'none';document.getElementById('_fs_zjinafmiudpqluoxjslm_ind_11').style.opacity = 0;document.getElementById('_fb_zjinafmiudpqluoxjslm_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"88.91898531376692%\" width=\"2.7476804154079724%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"88.91898531376692%\" x2=\"90.57003581860577%\" y1=\"60\" y2=\"60\" id=\"_fb_zjinafmiudpqluoxjslm_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"89.74451056618635%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_zjinafmiudpqluoxjslm_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.016</text><svg x=\"88.91898531376692%\" y=\"40\" height=\"20\" width=\"1.6510505048388495%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><line x1=\"90.57003581860577%\" x2=\"91.20687665760694%\" y1=\"60\" y2=\"60\" id=\"_fb_zjinafmiudpqluoxjslm_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"90.88845623810636%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_zjinafmiudpqluoxjslm_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.006</text><svg x=\"90.57003581860577%\" y=\"40\" height=\"20\" width=\"0.6368408390011666%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">a</text> </svg></svg><line x1=\"91.20687665760694%\" x2=\"91.66666487194233%\" y1=\"60\" y2=\"60\" id=\"_fb_zjinafmiudpqluoxjslm_ind_7\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.43677076477464%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_zjinafmiudpqluoxjslm_ind_7\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.004</text><svg x=\"91.20687665760694%\" y=\"40\" height=\"20\" width=\"0.45978821433538997%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"91.66666487194233%\" x2=\"91.6666657291749%\" y1=\"60\" y2=\"60\" id=\"_fb_zjinafmiudpqluoxjslm_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.6666653005586%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_zjinafmiudpqluoxjslm_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"91.66666487194233%\" y=\"40\" height=\"20\" width=\"8.572325640443523e-07%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"90.57003581860577%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.57003581860577%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.57003581860577%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.57003581860577%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.57003581860577%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.57003581860577%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.57003581860577%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.57003581860577%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.20687665760694%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.20687665760694%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.20687665760694%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.20687665760694%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.20687665760694%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.20687665760694%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.20687665760694%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.20687665760694%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.66666487194233%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.66666487194233%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.66666487194233%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.66666487194233%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.66666487194233%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.66666487194233%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.66666487194233%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.66666487194233%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"88.91898531376692%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.6666657291749%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"90.57003581860577%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"88.91898531376692%\" y=\"40\" height=\"20\" width=\"1.6510505048388495%\" onmouseover=\"document.getElementById('_tp_zjinafmiudpqluoxjslm_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_zjinafmiudpqluoxjslm_ind_5').style.opacity = 1;document.getElementById('_fb_zjinafmiudpqluoxjslm_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zjinafmiudpqluoxjslm_ind_5').style.textDecoration = 'none';document.getElementById('_fs_zjinafmiudpqluoxjslm_ind_5').style.opacity = 0;document.getElementById('_fb_zjinafmiudpqluoxjslm_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.20687665760694%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"90.57003581860577%\" y=\"40\" height=\"20\" width=\"0.6368408390011666%\" onmouseover=\"document.getElementById('_tp_zjinafmiudpqluoxjslm_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_zjinafmiudpqluoxjslm_ind_3').style.opacity = 1;document.getElementById('_fb_zjinafmiudpqluoxjslm_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zjinafmiudpqluoxjslm_ind_3').style.textDecoration = 'none';document.getElementById('_fs_zjinafmiudpqluoxjslm_ind_3').style.opacity = 0;document.getElementById('_fb_zjinafmiudpqluoxjslm_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66666487194233%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.20687665760694%\" y=\"40\" height=\"20\" width=\"0.45978821433538997%\" onmouseover=\"document.getElementById('_tp_zjinafmiudpqluoxjslm_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_zjinafmiudpqluoxjslm_ind_7').style.opacity = 1;document.getElementById('_fb_zjinafmiudpqluoxjslm_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zjinafmiudpqluoxjslm_ind_7').style.textDecoration = 'none';document.getElementById('_fs_zjinafmiudpqluoxjslm_ind_7').style.opacity = 0;document.getElementById('_fb_zjinafmiudpqluoxjslm_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"91.66666487194233%\" y=\"40\" height=\"20\" width=\"8.572325640443523e-07%\" onmouseover=\"document.getElementById('_tp_zjinafmiudpqluoxjslm_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_zjinafmiudpqluoxjslm_ind_0').style.opacity = 1;document.getElementById('_fb_zjinafmiudpqluoxjslm_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_zjinafmiudpqluoxjslm_ind_0').style.textDecoration = 'none';document.getElementById('_fs_zjinafmiudpqluoxjslm_ind_0').style.opacity = 0;document.getElementById('_fb_zjinafmiudpqluoxjslm_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_zjinafmiudpqluoxjslm_ind_0'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_zjinafmiudpqluoxjslm_ind_0').style.opacity = 1; document.getElementById('_fs_zjinafmiudpqluoxjslm_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_zjinafmiudpqluoxjslm_ind_0').style.opacity = 0; document.getElementById('_fs_zjinafmiudpqluoxjslm_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.005</div\n",
|
|
" ><div id='_tp_zjinafmiudpqluoxjslm_ind_1'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_zjinafmiudpqluoxjslm_ind_1').style.opacity = 1; document.getElementById('_fs_zjinafmiudpqluoxjslm_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_zjinafmiudpqluoxjslm_ind_1').style.opacity = 0; document.getElementById('_fs_zjinafmiudpqluoxjslm_ind_1').style.opacity = 0;\"\n",
|
|
" >im </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.025</div\n",
|
|
" ><div id='_tp_zjinafmiudpqluoxjslm_ind_2'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.03830461477520289); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_zjinafmiudpqluoxjslm_ind_2').style.opacity = 1; document.getElementById('_fs_zjinafmiudpqluoxjslm_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_zjinafmiudpqluoxjslm_ind_2').style.opacity = 0; document.getElementById('_fs_zjinafmiudpqluoxjslm_ind_2').style.opacity = 0;\"\n",
|
|
" >grabbing </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.006</div\n",
|
|
" ><div id='_tp_zjinafmiudpqluoxjslm_ind_3'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_zjinafmiudpqluoxjslm_ind_3').style.opacity = 1; document.getElementById('_fs_zjinafmiudpqluoxjslm_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_zjinafmiudpqluoxjslm_ind_3').style.opacity = 0; document.getElementById('_fs_zjinafmiudpqluoxjslm_ind_3').style.opacity = 0;\"\n",
|
|
" >a </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.005</div\n",
|
|
" ><div id='_tp_zjinafmiudpqluoxjslm_ind_4'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_zjinafmiudpqluoxjslm_ind_4').style.opacity = 1; document.getElementById('_fs_zjinafmiudpqluoxjslm_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_zjinafmiudpqluoxjslm_ind_4').style.opacity = 0; document.getElementById('_fs_zjinafmiudpqluoxjslm_ind_4').style.opacity = 0;\"\n",
|
|
" >minute </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.016</div\n",
|
|
" ><div id='_tp_zjinafmiudpqluoxjslm_ind_5'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.022539116656763607); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_zjinafmiudpqluoxjslm_ind_5').style.opacity = 1; document.getElementById('_fs_zjinafmiudpqluoxjslm_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_zjinafmiudpqluoxjslm_ind_5').style.opacity = 0; document.getElementById('_fs_zjinafmiudpqluoxjslm_ind_5').style.opacity = 0;\"\n",
|
|
" >to </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.023</div\n",
|
|
" ><div id='_tp_zjinafmiudpqluoxjslm_ind_6'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.03830461477520289); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_zjinafmiudpqluoxjslm_ind_6').style.opacity = 1; document.getElementById('_fs_zjinafmiudpqluoxjslm_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_zjinafmiudpqluoxjslm_ind_6').style.opacity = 0; document.getElementById('_fs_zjinafmiudpqluoxjslm_ind_6').style.opacity = 0;\"\n",
|
|
" >post </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.004</div\n",
|
|
" ><div id='_tp_zjinafmiudpqluoxjslm_ind_7'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_zjinafmiudpqluoxjslm_ind_7').style.opacity = 1; document.getElementById('_fs_zjinafmiudpqluoxjslm_ind_7').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_zjinafmiudpqluoxjslm_ind_7').style.opacity = 0; document.getElementById('_fs_zjinafmiudpqluoxjslm_ind_7').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.005</div\n",
|
|
" ><div id='_tp_zjinafmiudpqluoxjslm_ind_8'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_zjinafmiudpqluoxjslm_ind_8').style.opacity = 1; document.getElementById('_fs_zjinafmiudpqluoxjslm_ind_8').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_zjinafmiudpqluoxjslm_ind_8').style.opacity = 0; document.getElementById('_fs_zjinafmiudpqluoxjslm_ind_8').style.opacity = 0;\"\n",
|
|
" >feel </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.555</div\n",
|
|
" ><div id='_tp_zjinafmiudpqluoxjslm_ind_9'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 1.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_zjinafmiudpqluoxjslm_ind_9').style.opacity = 1; document.getElementById('_fs_zjinafmiudpqluoxjslm_ind_9').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_zjinafmiudpqluoxjslm_ind_9').style.opacity = 0; document.getElementById('_fs_zjinafmiudpqluoxjslm_ind_9').style.opacity = 0;\"\n",
|
|
" >greedy </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.169</div\n",
|
|
" ><div id='_tp_zjinafmiudpqluoxjslm_ind_10'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.306318082788671); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_zjinafmiudpqluoxjslm_ind_10').style.opacity = 1; document.getElementById('_fs_zjinafmiudpqluoxjslm_ind_10').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_zjinafmiudpqluoxjslm_ind_10').style.opacity = 0; document.getElementById('_fs_zjinafmiudpqluoxjslm_ind_10').style.opacity = 0;\"\n",
|
|
" >wrong</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_zjinafmiudpqluoxjslm_ind_11'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_zjinafmiudpqluoxjslm_ind_11').style.opacity = 1; document.getElementById('_fs_zjinafmiudpqluoxjslm_ind_11').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_zjinafmiudpqluoxjslm_ind_11').style.opacity = 0; document.getElementById('_fs_zjinafmiudpqluoxjslm_ind_11').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_unvxfbqcaujtzhoysnxx_output_4' style='display: none';><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"48.705281698548966%\" y1=\"33\" x2=\"48.705281698548966%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"48.705281698548966%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.3</text><line x1=\"37.053446541506865%\" y1=\"33\" x2=\"37.053446541506865%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"37.053446541506865%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.1</text><line x1=\"25.40161138446477%\" y1=\"33\" x2=\"25.40161138446477%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"25.40161138446477%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.1</text><line x1=\"13.749776227422668%\" y1=\"33\" x2=\"13.749776227422668%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"13.749776227422668%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.3</text><line x1=\"60.357116855591066%\" y1=\"33\" x2=\"60.357116855591066%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"60.357116855591066%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.5</text><line x1=\"72.00895201263315%\" y1=\"33\" x2=\"72.00895201263315%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"72.00895201263315%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.7</text><line x1=\"83.66078716967526%\" y1=\"33\" x2=\"83.66078716967526%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"83.66078716967526%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.9</text><line x1=\"36.236413617347594%\" y1=\"33\" x2=\"36.236413617347594%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"36.236413617347594%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.0859759</text><text x=\"36.236413617347594%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.0859759</text><text x=\"36.236413617347594%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"31.340331902728327%\" y1=\"33\" x2=\"31.340331902728327%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"31.340331902728327%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.00193623</text><text x=\"31.340331902728327%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.00193623</text><text x=\"31.340331902728327%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">fear</tspan>(inputs)</text><rect x=\"29.168084652840687%\" width=\"2.1722472498876386%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"30.152912399191713%\" x2=\"31.340331902728327%\" y1=\"60\" y2=\"60\" id=\"_fb_yspmlsqkbemqjqmgsmac_ind_2\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"30.74662215096002%\" y=\"71\" font-size=\"12px\" id=\"_fs_yspmlsqkbemqjqmgsmac_ind_2\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.02</text><svg x=\"30.152912399191713%\" y=\"40\" height=\"20\" width=\"1.1874195035366135%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">grabbing</text> </svg></svg><line x1=\"29.71069387890977%\" x2=\"30.152912399191713%\" y1=\"60\" y2=\"60\" id=\"_fb_yspmlsqkbemqjqmgsmac_ind_6\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"29.931803139050743%\" y=\"71\" font-size=\"12px\" id=\"_fs_yspmlsqkbemqjqmgsmac_ind_6\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.008</text><svg x=\"29.71069387890977%\" y=\"40\" height=\"20\" width=\"0.4422185202819442%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">post</text> </svg></svg><line x1=\"29.3444923667448%\" x2=\"29.71069387890977%\" y1=\"60\" y2=\"60\" id=\"_fb_yspmlsqkbemqjqmgsmac_ind_10\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"29.527593122827284%\" y=\"71\" font-size=\"12px\" id=\"_fs_yspmlsqkbemqjqmgsmac_ind_10\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.006</text><svg x=\"29.3444923667448%\" y=\"40\" height=\"20\" width=\"0.3662015121649702%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">wrong</text> </svg></svg><line x1=\"29.172602767288343%\" x2=\"29.3444923667448%\" y1=\"60\" y2=\"60\" id=\"_fb_yspmlsqkbemqjqmgsmac_ind_1\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"29.25854756701657%\" y=\"71\" font-size=\"12px\" id=\"_fs_yspmlsqkbemqjqmgsmac_ind_1\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.003</text><svg x=\"29.172602767288343%\" y=\"40\" height=\"20\" width=\"0.1718895994564562%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">im</text> </svg></svg><line x1=\"29.168084847406792%\" x2=\"29.172602767288343%\" y1=\"60\" y2=\"60\" id=\"_fb_yspmlsqkbemqjqmgsmac_ind_5\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"29.170343807347567%\" y=\"71\" font-size=\"12px\" id=\"_fs_yspmlsqkbemqjqmgsmac_ind_5\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"29.168084847406792%\" y=\"40\" height=\"20\" width=\"0.00451791988155037%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><line x1=\"29.16808465326458%\" x2=\"29.168084847406792%\" y1=\"60\" y2=\"60\" id=\"_fb_yspmlsqkbemqjqmgsmac_ind_11\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"29.168084750335687%\" y=\"71\" font-size=\"12px\" id=\"_fs_yspmlsqkbemqjqmgsmac_ind_11\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"29.16808465326458%\" y=\"40\" height=\"20\" width=\"1.9414221341662596e-07%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><line x1=\"29.168084652840687%\" x2=\"29.16808465326458%\" y1=\"60\" y2=\"60\" id=\"_fb_yspmlsqkbemqjqmgsmac_ind_0\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"29.16808465305263%\" y=\"71\" font-size=\"12px\" id=\"_fs_yspmlsqkbemqjqmgsmac_ind_0\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"29.168084652840687%\" y=\"40\" height=\"20\" width=\"4.2389203258608177e-10%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"30.152912399191713%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"30.152912399191713%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"30.152912399191713%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"30.152912399191713%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"30.152912399191713%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"30.152912399191713%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"30.152912399191713%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"30.152912399191713%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"29.71069387890977%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"29.71069387890977%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"29.71069387890977%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"29.71069387890977%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"29.71069387890977%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"29.71069387890977%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"29.71069387890977%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"29.71069387890977%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"29.3444923667448%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"29.3444923667448%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"29.3444923667448%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"29.3444923667448%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"29.3444923667448%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"29.3444923667448%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"29.3444923667448%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"29.3444923667448%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"29.172602767288343%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"29.172602767288343%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"29.172602767288343%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"29.172602767288343%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"29.172602767288343%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"29.172602767288343%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"29.172602767288343%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"29.172602767288343%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"29.168084847406792%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"29.168084847406792%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"29.168084847406792%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"29.168084847406792%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"29.168084847406792%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"29.168084847406792%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"29.168084847406792%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"29.168084847406792%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"29.16808465326458%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"29.16808465326458%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"29.16808465326458%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"29.16808465326458%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"29.16808465326458%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"29.16808465326458%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"29.16808465326458%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"29.16808465326458%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"31.340331902728327%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"29.168084652840687%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"31.340331902728327%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"30.152912399191713%\" y=\"40\" height=\"20\" width=\"1.1874195035366135%\" onmouseover=\"document.getElementById('_tp_yspmlsqkbemqjqmgsmac_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_yspmlsqkbemqjqmgsmac_ind_2').style.opacity = 1;document.getElementById('_fb_yspmlsqkbemqjqmgsmac_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_yspmlsqkbemqjqmgsmac_ind_2').style.textDecoration = 'none';document.getElementById('_fs_yspmlsqkbemqjqmgsmac_ind_2').style.opacity = 0;document.getElementById('_fb_yspmlsqkbemqjqmgsmac_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"30.152912399191713%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"29.71069387890977%\" y=\"40\" height=\"20\" width=\"0.4422185202819442%\" onmouseover=\"document.getElementById('_tp_yspmlsqkbemqjqmgsmac_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_yspmlsqkbemqjqmgsmac_ind_6').style.opacity = 1;document.getElementById('_fb_yspmlsqkbemqjqmgsmac_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_yspmlsqkbemqjqmgsmac_ind_6').style.textDecoration = 'none';document.getElementById('_fs_yspmlsqkbemqjqmgsmac_ind_6').style.opacity = 0;document.getElementById('_fb_yspmlsqkbemqjqmgsmac_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"29.71069387890977%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"29.3444923667448%\" y=\"40\" height=\"20\" width=\"0.3662015121649702%\" onmouseover=\"document.getElementById('_tp_yspmlsqkbemqjqmgsmac_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_yspmlsqkbemqjqmgsmac_ind_10').style.opacity = 1;document.getElementById('_fb_yspmlsqkbemqjqmgsmac_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_yspmlsqkbemqjqmgsmac_ind_10').style.textDecoration = 'none';document.getElementById('_fs_yspmlsqkbemqjqmgsmac_ind_10').style.opacity = 0;document.getElementById('_fb_yspmlsqkbemqjqmgsmac_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"29.3444923667448%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"29.172602767288343%\" y=\"40\" height=\"20\" width=\"0.1718895994564562%\" onmouseover=\"document.getElementById('_tp_yspmlsqkbemqjqmgsmac_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_yspmlsqkbemqjqmgsmac_ind_1').style.opacity = 1;document.getElementById('_fb_yspmlsqkbemqjqmgsmac_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_yspmlsqkbemqjqmgsmac_ind_1').style.textDecoration = 'none';document.getElementById('_fs_yspmlsqkbemqjqmgsmac_ind_1').style.opacity = 0;document.getElementById('_fb_yspmlsqkbemqjqmgsmac_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"29.172602767288343%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"29.168084847406792%\" y=\"40\" height=\"20\" width=\"0.00451791988155037%\" onmouseover=\"document.getElementById('_tp_yspmlsqkbemqjqmgsmac_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_yspmlsqkbemqjqmgsmac_ind_5').style.opacity = 1;document.getElementById('_fb_yspmlsqkbemqjqmgsmac_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_yspmlsqkbemqjqmgsmac_ind_5').style.textDecoration = 'none';document.getElementById('_fs_yspmlsqkbemqjqmgsmac_ind_5').style.opacity = 0;document.getElementById('_fb_yspmlsqkbemqjqmgsmac_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"29.168084847406792%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"29.16808465326458%\" y=\"40\" height=\"20\" width=\"1.9414221341662596e-07%\" onmouseover=\"document.getElementById('_tp_yspmlsqkbemqjqmgsmac_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_yspmlsqkbemqjqmgsmac_ind_11').style.opacity = 1;document.getElementById('_fb_yspmlsqkbemqjqmgsmac_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_yspmlsqkbemqjqmgsmac_ind_11').style.textDecoration = 'none';document.getElementById('_fs_yspmlsqkbemqjqmgsmac_ind_11').style.opacity = 0;document.getElementById('_fb_yspmlsqkbemqjqmgsmac_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"29.168084652840687%\" y=\"40\" height=\"20\" width=\"4.2389203258608177e-10%\" onmouseover=\"document.getElementById('_tp_yspmlsqkbemqjqmgsmac_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_yspmlsqkbemqjqmgsmac_ind_0').style.opacity = 1;document.getElementById('_fb_yspmlsqkbemqjqmgsmac_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_yspmlsqkbemqjqmgsmac_ind_0').style.textDecoration = 'none';document.getElementById('_fs_yspmlsqkbemqjqmgsmac_ind_0').style.opacity = 0;document.getElementById('_fb_yspmlsqkbemqjqmgsmac_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"31.340331902728327%\" width=\"7.068328964506905%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"31.340331902728327%\" x2=\"35.00513984742634%\" y1=\"60\" y2=\"60\" id=\"_fb_yspmlsqkbemqjqmgsmac_ind_9\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"33.172735875077336%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_yspmlsqkbemqjqmgsmac_ind_9\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.063</text><svg x=\"31.340331902728327%\" y=\"40\" height=\"20\" width=\"3.6648079446980155%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">greedy</text> </svg></svg><line x1=\"35.00513984742634%\" x2=\"37.431602720204964%\" y1=\"60\" y2=\"60\" id=\"_fb_yspmlsqkbemqjqmgsmac_ind_8\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"36.21837128381566%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_yspmlsqkbemqjqmgsmac_ind_8\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.042</text><svg x=\"35.00513984742634%\" y=\"40\" height=\"20\" width=\"2.4264628727786217%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"37.431602720204964%\" x2=\"37.94109140520805%\" y1=\"60\" y2=\"60\" id=\"_fb_yspmlsqkbemqjqmgsmac_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"37.6863470627065%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_yspmlsqkbemqjqmgsmac_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.009</text><svg x=\"37.431602720204964%\" y=\"40\" height=\"20\" width=\"0.5094886850030846%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">minute</text> </svg></svg><line x1=\"37.94109140520805%\" x2=\"38.31780053398894%\" y1=\"60\" y2=\"60\" id=\"_fb_yspmlsqkbemqjqmgsmac_ind_7\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"38.12944596959849%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_yspmlsqkbemqjqmgsmac_ind_7\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.006</text><svg x=\"37.94109140520805%\" y=\"40\" height=\"20\" width=\"0.37670912878088814%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"38.31780053398894%\" x2=\"38.408660867235234%\" y1=\"60\" y2=\"60\" id=\"_fb_yspmlsqkbemqjqmgsmac_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"38.363230700612085%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_yspmlsqkbemqjqmgsmac_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.002</text><svg x=\"38.31780053398894%\" y=\"40\" height=\"20\" width=\"0.09086033324629739%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">a</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"35.00513984742634%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"35.00513984742634%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"35.00513984742634%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"35.00513984742634%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"35.00513984742634%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"35.00513984742634%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"35.00513984742634%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"35.00513984742634%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"37.431602720204964%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"37.431602720204964%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"37.431602720204964%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"37.431602720204964%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"37.431602720204964%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"37.431602720204964%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"37.431602720204964%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"37.431602720204964%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"37.94109140520805%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"37.94109140520805%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"37.94109140520805%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"37.94109140520805%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"37.94109140520805%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"37.94109140520805%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"37.94109140520805%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"37.94109140520805%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"38.31780053398894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"38.31780053398894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"38.31780053398894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"38.31780053398894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"38.31780053398894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"38.31780053398894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"38.31780053398894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"38.31780053398894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"31.340331902728327%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"38.408660867235234%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"35.00513984742634%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"31.340331902728327%\" y=\"40\" height=\"20\" width=\"3.6648079446980155%\" onmouseover=\"document.getElementById('_tp_yspmlsqkbemqjqmgsmac_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_yspmlsqkbemqjqmgsmac_ind_9').style.opacity = 1;document.getElementById('_fb_yspmlsqkbemqjqmgsmac_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_yspmlsqkbemqjqmgsmac_ind_9').style.textDecoration = 'none';document.getElementById('_fs_yspmlsqkbemqjqmgsmac_ind_9').style.opacity = 0;document.getElementById('_fb_yspmlsqkbemqjqmgsmac_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"37.431602720204964%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"35.00513984742634%\" y=\"40\" height=\"20\" width=\"2.4264628727786217%\" onmouseover=\"document.getElementById('_tp_yspmlsqkbemqjqmgsmac_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_yspmlsqkbemqjqmgsmac_ind_8').style.opacity = 1;document.getElementById('_fb_yspmlsqkbemqjqmgsmac_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_yspmlsqkbemqjqmgsmac_ind_8').style.textDecoration = 'none';document.getElementById('_fs_yspmlsqkbemqjqmgsmac_ind_8').style.opacity = 0;document.getElementById('_fb_yspmlsqkbemqjqmgsmac_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"37.94109140520805%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"37.431602720204964%\" y=\"40\" height=\"20\" width=\"0.5094886850030846%\" onmouseover=\"document.getElementById('_tp_yspmlsqkbemqjqmgsmac_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_yspmlsqkbemqjqmgsmac_ind_4').style.opacity = 1;document.getElementById('_fb_yspmlsqkbemqjqmgsmac_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_yspmlsqkbemqjqmgsmac_ind_4').style.textDecoration = 'none';document.getElementById('_fs_yspmlsqkbemqjqmgsmac_ind_4').style.opacity = 0;document.getElementById('_fb_yspmlsqkbemqjqmgsmac_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"38.31780053398894%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"37.94109140520805%\" y=\"40\" height=\"20\" width=\"0.37670912878088814%\" onmouseover=\"document.getElementById('_tp_yspmlsqkbemqjqmgsmac_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_yspmlsqkbemqjqmgsmac_ind_7').style.opacity = 1;document.getElementById('_fb_yspmlsqkbemqjqmgsmac_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_yspmlsqkbemqjqmgsmac_ind_7').style.textDecoration = 'none';document.getElementById('_fs_yspmlsqkbemqjqmgsmac_ind_7').style.opacity = 0;document.getElementById('_fb_yspmlsqkbemqjqmgsmac_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"38.31780053398894%\" y=\"40\" height=\"20\" width=\"0.09086033324629739%\" onmouseover=\"document.getElementById('_tp_yspmlsqkbemqjqmgsmac_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_yspmlsqkbemqjqmgsmac_ind_3').style.opacity = 1;document.getElementById('_fb_yspmlsqkbemqjqmgsmac_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_yspmlsqkbemqjqmgsmac_ind_3').style.textDecoration = 'none';document.getElementById('_fs_yspmlsqkbemqjqmgsmac_ind_3').style.opacity = 0;document.getElementById('_fb_yspmlsqkbemqjqmgsmac_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_yspmlsqkbemqjqmgsmac_ind_0'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_yspmlsqkbemqjqmgsmac_ind_0').style.opacity = 1; document.getElementById('_fs_yspmlsqkbemqjqmgsmac_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_yspmlsqkbemqjqmgsmac_ind_0').style.opacity = 0; document.getElementById('_fs_yspmlsqkbemqjqmgsmac_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.003</div\n",
|
|
" ><div id='_tp_yspmlsqkbemqjqmgsmac_ind_1'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_yspmlsqkbemqjqmgsmac_ind_1').style.opacity = 1; document.getElementById('_fs_yspmlsqkbemqjqmgsmac_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_yspmlsqkbemqjqmgsmac_ind_1').style.opacity = 0; document.getElementById('_fs_yspmlsqkbemqjqmgsmac_ind_1').style.opacity = 0;\"\n",
|
|
" >im </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.02</div\n",
|
|
" ><div id='_tp_yspmlsqkbemqjqmgsmac_ind_2'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.02253911665676371); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_yspmlsqkbemqjqmgsmac_ind_2').style.opacity = 1; document.getElementById('_fs_yspmlsqkbemqjqmgsmac_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_yspmlsqkbemqjqmgsmac_ind_2').style.opacity = 0; document.getElementById('_fs_yspmlsqkbemqjqmgsmac_ind_2').style.opacity = 0;\"\n",
|
|
" >grabbing </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.002</div\n",
|
|
" ><div id='_tp_yspmlsqkbemqjqmgsmac_ind_3'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_yspmlsqkbemqjqmgsmac_ind_3').style.opacity = 1; document.getElementById('_fs_yspmlsqkbemqjqmgsmac_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_yspmlsqkbemqjqmgsmac_ind_3').style.opacity = 0; document.getElementById('_fs_yspmlsqkbemqjqmgsmac_ind_3').style.opacity = 0;\"\n",
|
|
" >a </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.009</div\n",
|
|
" ><div id='_tp_yspmlsqkbemqjqmgsmac_ind_4'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_yspmlsqkbemqjqmgsmac_ind_4').style.opacity = 1; document.getElementById('_fs_yspmlsqkbemqjqmgsmac_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_yspmlsqkbemqjqmgsmac_ind_4').style.opacity = 0; document.getElementById('_fs_yspmlsqkbemqjqmgsmac_ind_4').style.opacity = 0;\"\n",
|
|
" >minute </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_yspmlsqkbemqjqmgsmac_ind_5'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_yspmlsqkbemqjqmgsmac_ind_5').style.opacity = 1; document.getElementById('_fs_yspmlsqkbemqjqmgsmac_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_yspmlsqkbemqjqmgsmac_ind_5').style.opacity = 0; document.getElementById('_fs_yspmlsqkbemqjqmgsmac_ind_5').style.opacity = 0;\"\n",
|
|
" >to </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.008</div\n",
|
|
" ><div id='_tp_yspmlsqkbemqjqmgsmac_ind_6'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_yspmlsqkbemqjqmgsmac_ind_6').style.opacity = 1; document.getElementById('_fs_yspmlsqkbemqjqmgsmac_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_yspmlsqkbemqjqmgsmac_ind_6').style.opacity = 0; document.getElementById('_fs_yspmlsqkbemqjqmgsmac_ind_6').style.opacity = 0;\"\n",
|
|
" >post </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.006</div\n",
|
|
" ><div id='_tp_yspmlsqkbemqjqmgsmac_ind_7'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_yspmlsqkbemqjqmgsmac_ind_7').style.opacity = 1; document.getElementById('_fs_yspmlsqkbemqjqmgsmac_ind_7').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_yspmlsqkbemqjqmgsmac_ind_7').style.opacity = 0; document.getElementById('_fs_yspmlsqkbemqjqmgsmac_ind_7').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.042</div\n",
|
|
" ><div id='_tp_yspmlsqkbemqjqmgsmac_ind_8'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.04618736383442258); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_yspmlsqkbemqjqmgsmac_ind_8').style.opacity = 1; document.getElementById('_fs_yspmlsqkbemqjqmgsmac_ind_8').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_yspmlsqkbemqjqmgsmac_ind_8').style.opacity = 0; document.getElementById('_fs_yspmlsqkbemqjqmgsmac_ind_8').style.opacity = 0;\"\n",
|
|
" >feel </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.063</div\n",
|
|
" ><div id='_tp_yspmlsqkbemqjqmgsmac_ind_9'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.06983561101208147); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_yspmlsqkbemqjqmgsmac_ind_9').style.opacity = 1; document.getElementById('_fs_yspmlsqkbemqjqmgsmac_ind_9').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_yspmlsqkbemqjqmgsmac_ind_9').style.opacity = 0; document.getElementById('_fs_yspmlsqkbemqjqmgsmac_ind_9').style.opacity = 0;\"\n",
|
|
" >greedy </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.006</div\n",
|
|
" ><div id='_tp_yspmlsqkbemqjqmgsmac_ind_10'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_yspmlsqkbemqjqmgsmac_ind_10').style.opacity = 1; document.getElementById('_fs_yspmlsqkbemqjqmgsmac_ind_10').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_yspmlsqkbemqjqmgsmac_ind_10').style.opacity = 0; document.getElementById('_fs_yspmlsqkbemqjqmgsmac_ind_10').style.opacity = 0;\"\n",
|
|
" >wrong</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_yspmlsqkbemqjqmgsmac_ind_11'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_yspmlsqkbemqjqmgsmac_ind_11').style.opacity = 1; document.getElementById('_fs_yspmlsqkbemqjqmgsmac_ind_11').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_yspmlsqkbemqjqmgsmac_ind_11').style.opacity = 0; document.getElementById('_fs_yspmlsqkbemqjqmgsmac_ind_11').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_unvxfbqcaujtzhoysnxx_output_4_zoom' style='display: none;'><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"47.92151268958496%\" y1=\"33\" x2=\"47.92151268958496%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"47.92151268958496%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.04</text><line x1=\"32.15973242485357%\" y1=\"33\" x2=\"32.15973242485357%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"32.15973242485357%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.01</text><line x1=\"16.397952160122195%\" y1=\"33\" x2=\"16.397952160122195%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"16.397952160122195%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.02</text><line x1=\"63.68329295431634%\" y1=\"33\" x2=\"63.68329295431634%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"63.68329295431634%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.07</text><line x1=\"79.44507321904773%\" y1=\"33\" x2=\"79.44507321904773%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"79.44507321904773%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.1</text><line x1=\"72.07691003783627%\" y1=\"33\" x2=\"72.07691003783627%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"72.07691003783627%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.0859759</text><text x=\"72.07691003783627%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.0859759</text><text x=\"72.07691003783627%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"27.92308470823697%\" y1=\"33\" x2=\"27.92308470823697%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"27.92308470823697%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.00193623</text><text x=\"27.92308470823697%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.00193623</text><text x=\"27.92308470823697%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">fear</tspan>(inputs)</text><rect x=\"8.333332895506103%\" width=\"19.589751812730867%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"17.214702698278597%\" x2=\"27.92308470823697%\" y1=\"60\" y2=\"60\" id=\"_fb_xckwpoluemhmwftataja_ind_2\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"22.568893703257785%\" y=\"71\" font-size=\"12px\" id=\"_fs_xckwpoluemhmwftataja_ind_2\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.02</text><svg x=\"17.214702698278597%\" y=\"40\" height=\"20\" width=\"10.708382009958374%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">grabbing</text> </svg></svg><line x1=\"13.226689335727677%\" x2=\"17.214702698278597%\" y1=\"60\" y2=\"60\" id=\"_fb_xckwpoluemhmwftataja_ind_6\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"15.220696017003137%\" y=\"71\" font-size=\"12px\" id=\"_fs_xckwpoluemhmwftataja_ind_6\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.008</text><svg x=\"13.226689335727677%\" y=\"40\" height=\"20\" width=\"3.9880133625509195%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">post</text> </svg></svg><line x1=\"9.924212264054733%\" x2=\"13.226689335727677%\" y1=\"60\" y2=\"60\" id=\"_fb_xckwpoluemhmwftataja_ind_10\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"11.575450799891204%\" y=\"71\" font-size=\"12px\" id=\"_fs_xckwpoluemhmwftataja_ind_10\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.006</text><svg x=\"9.924212264054733%\" y=\"40\" height=\"20\" width=\"3.3024770716729446%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">wrong</text> </svg></svg><line x1=\"8.374078137879245%\" x2=\"9.924212264054733%\" y1=\"60\" y2=\"60\" id=\"_fb_xckwpoluemhmwftataja_ind_1\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"9.149145200966988%\" y=\"71\" font-size=\"12px\" id=\"_fs_xckwpoluemhmwftataja_ind_1\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.003</text><svg x=\"8.374078137879245%\" y=\"40\" height=\"20\" width=\"1.5501341261754877%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">im</text> </svg></svg><line x1=\"8.333334650141394%\" x2=\"8.374078137879245%\" y1=\"60\" y2=\"60\" id=\"_fb_xckwpoluemhmwftataja_ind_5\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.35370639401032%\" y=\"71\" font-size=\"12px\" id=\"_fs_xckwpoluemhmwftataja_ind_5\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"8.333334650141394%\" y=\"40\" height=\"20\" width=\"0.04074348773785097%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><line x1=\"8.33333289932884%\" x2=\"8.333334650141394%\" y1=\"60\" y2=\"60\" id=\"_fb_xckwpoluemhmwftataja_ind_11\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.333333774735117%\" y=\"71\" font-size=\"12px\" id=\"_fs_xckwpoluemhmwftataja_ind_11\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"8.33333289932884%\" y=\"40\" height=\"20\" width=\"1.7508125544907216e-06%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><line x1=\"8.333332895506103%\" x2=\"8.33333289932884%\" y1=\"60\" y2=\"60\" id=\"_fb_xckwpoluemhmwftataja_ind_0\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.33333289741747%\" y=\"71\" font-size=\"12px\" id=\"_fs_xckwpoluemhmwftataja_ind_0\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"8.333332895506103%\" y=\"40\" height=\"20\" width=\"3.822735905600894e-09%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"17.214702698278597%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"17.214702698278597%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"17.214702698278597%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"17.214702698278597%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"17.214702698278597%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"17.214702698278597%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"17.214702698278597%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"17.214702698278597%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"13.226689335727677%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"13.226689335727677%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"13.226689335727677%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"13.226689335727677%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"13.226689335727677%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"13.226689335727677%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"13.226689335727677%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"13.226689335727677%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"9.924212264054733%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"9.924212264054733%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"9.924212264054733%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"9.924212264054733%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"9.924212264054733%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"9.924212264054733%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"9.924212264054733%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"9.924212264054733%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.374078137879245%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.374078137879245%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.374078137879245%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.374078137879245%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.374078137879245%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.374078137879245%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.374078137879245%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.374078137879245%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.333334650141394%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.333334650141394%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.333334650141394%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.333334650141394%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.333334650141394%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.333334650141394%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.333334650141394%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.333334650141394%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.33333289932884%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.33333289932884%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.33333289932884%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.33333289932884%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.33333289932884%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.33333289932884%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.33333289932884%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.33333289932884%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"27.92308470823697%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.333332895506103%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"27.92308470823697%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"17.214702698278597%\" y=\"40\" height=\"20\" width=\"10.708382009958374%\" onmouseover=\"document.getElementById('_tp_xckwpoluemhmwftataja_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_xckwpoluemhmwftataja_ind_2').style.opacity = 1;document.getElementById('_fb_xckwpoluemhmwftataja_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xckwpoluemhmwftataja_ind_2').style.textDecoration = 'none';document.getElementById('_fs_xckwpoluemhmwftataja_ind_2').style.opacity = 0;document.getElementById('_fb_xckwpoluemhmwftataja_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"17.214702698278597%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"13.226689335727677%\" y=\"40\" height=\"20\" width=\"3.9880133625509195%\" onmouseover=\"document.getElementById('_tp_xckwpoluemhmwftataja_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_xckwpoluemhmwftataja_ind_6').style.opacity = 1;document.getElementById('_fb_xckwpoluemhmwftataja_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xckwpoluemhmwftataja_ind_6').style.textDecoration = 'none';document.getElementById('_fs_xckwpoluemhmwftataja_ind_6').style.opacity = 0;document.getElementById('_fb_xckwpoluemhmwftataja_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"13.226689335727677%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"9.924212264054733%\" y=\"40\" height=\"20\" width=\"3.3024770716729446%\" onmouseover=\"document.getElementById('_tp_xckwpoluemhmwftataja_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_xckwpoluemhmwftataja_ind_10').style.opacity = 1;document.getElementById('_fb_xckwpoluemhmwftataja_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xckwpoluemhmwftataja_ind_10').style.textDecoration = 'none';document.getElementById('_fs_xckwpoluemhmwftataja_ind_10').style.opacity = 0;document.getElementById('_fb_xckwpoluemhmwftataja_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"9.924212264054733%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.374078137879245%\" y=\"40\" height=\"20\" width=\"1.5501341261754877%\" onmouseover=\"document.getElementById('_tp_xckwpoluemhmwftataja_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_xckwpoluemhmwftataja_ind_1').style.opacity = 1;document.getElementById('_fb_xckwpoluemhmwftataja_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xckwpoluemhmwftataja_ind_1').style.textDecoration = 'none';document.getElementById('_fs_xckwpoluemhmwftataja_ind_1').style.opacity = 0;document.getElementById('_fb_xckwpoluemhmwftataja_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"8.374078137879245%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.333334650141394%\" y=\"40\" height=\"20\" width=\"0.04074348773785097%\" onmouseover=\"document.getElementById('_tp_xckwpoluemhmwftataja_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_xckwpoluemhmwftataja_ind_5').style.opacity = 1;document.getElementById('_fb_xckwpoluemhmwftataja_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xckwpoluemhmwftataja_ind_5').style.textDecoration = 'none';document.getElementById('_fs_xckwpoluemhmwftataja_ind_5').style.opacity = 0;document.getElementById('_fb_xckwpoluemhmwftataja_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"8.333334650141394%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.33333289932884%\" y=\"40\" height=\"20\" width=\"1.7508125544907216e-06%\" onmouseover=\"document.getElementById('_tp_xckwpoluemhmwftataja_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_xckwpoluemhmwftataja_ind_11').style.opacity = 1;document.getElementById('_fb_xckwpoluemhmwftataja_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xckwpoluemhmwftataja_ind_11').style.textDecoration = 'none';document.getElementById('_fs_xckwpoluemhmwftataja_ind_11').style.opacity = 0;document.getElementById('_fb_xckwpoluemhmwftataja_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"8.333332895506103%\" y=\"40\" height=\"20\" width=\"3.822735905600894e-09%\" onmouseover=\"document.getElementById('_tp_xckwpoluemhmwftataja_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_xckwpoluemhmwftataja_ind_0').style.opacity = 1;document.getElementById('_fb_xckwpoluemhmwftataja_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xckwpoluemhmwftataja_ind_0').style.textDecoration = 'none';document.getElementById('_fs_xckwpoluemhmwftataja_ind_0').style.opacity = 0;document.getElementById('_fb_xckwpoluemhmwftataja_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"27.92308470823697%\" width=\"63.743577142330174%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"27.92308470823697%\" x2=\"60.9730416510629%\" y1=\"60\" y2=\"60\" id=\"_fb_xckwpoluemhmwftataja_ind_9\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"44.448063179649935%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_xckwpoluemhmwftataja_ind_9\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.063</text><svg x=\"27.92308470823697%\" y=\"40\" height=\"20\" width=\"33.04995694282593%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">greedy</text> </svg></svg><line x1=\"60.9730416510629%\" x2=\"82.85535981857248%\" y1=\"60\" y2=\"60\" id=\"_fb_xckwpoluemhmwftataja_ind_8\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"71.91420073481768%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_xckwpoluemhmwftataja_ind_8\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.042</text><svg x=\"60.9730416510629%\" y=\"40\" height=\"20\" width=\"21.88231816750958%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"82.85535981857248%\" x2=\"87.45002872245595%\" y1=\"60\" y2=\"60\" id=\"_fb_xckwpoluemhmwftataja_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"85.15269427051422%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_xckwpoluemhmwftataja_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.009</text><svg x=\"82.85535981857248%\" y=\"40\" height=\"20\" width=\"4.594668903883473%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">minute</text> </svg></svg><line x1=\"87.45002872245595%\" x2=\"90.84726554197057%\" y1=\"60\" y2=\"60\" id=\"_fb_xckwpoluemhmwftataja_ind_7\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"89.14864713221326%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_xckwpoluemhmwftataja_ind_7\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.006</text><svg x=\"87.45002872245595%\" y=\"40\" height=\"20\" width=\"3.3972368195146174%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"90.84726554197057%\" x2=\"91.66666185056714%\" y1=\"60\" y2=\"60\" id=\"_fb_xckwpoluemhmwftataja_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.25696369626885%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_xckwpoluemhmwftataja_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.002</text><svg x=\"90.84726554197057%\" y=\"40\" height=\"20\" width=\"0.8193963085965663%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">a</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"60.9730416510629%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"60.9730416510629%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"60.9730416510629%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"60.9730416510629%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"60.9730416510629%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"60.9730416510629%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"60.9730416510629%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"60.9730416510629%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"82.85535981857248%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"82.85535981857248%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"82.85535981857248%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"82.85535981857248%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"82.85535981857248%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"82.85535981857248%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"82.85535981857248%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"82.85535981857248%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"87.45002872245595%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"87.45002872245595%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"87.45002872245595%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"87.45002872245595%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"87.45002872245595%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"87.45002872245595%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"87.45002872245595%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"87.45002872245595%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"90.84726554197057%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.84726554197057%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.84726554197057%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.84726554197057%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.84726554197057%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.84726554197057%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.84726554197057%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.84726554197057%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"27.92308470823697%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66666185056714%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"60.9730416510629%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"27.92308470823697%\" y=\"40\" height=\"20\" width=\"33.04995694282593%\" onmouseover=\"document.getElementById('_tp_xckwpoluemhmwftataja_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_xckwpoluemhmwftataja_ind_9').style.opacity = 1;document.getElementById('_fb_xckwpoluemhmwftataja_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xckwpoluemhmwftataja_ind_9').style.textDecoration = 'none';document.getElementById('_fs_xckwpoluemhmwftataja_ind_9').style.opacity = 0;document.getElementById('_fb_xckwpoluemhmwftataja_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"82.85535981857248%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"60.9730416510629%\" y=\"40\" height=\"20\" width=\"21.88231816750958%\" onmouseover=\"document.getElementById('_tp_xckwpoluemhmwftataja_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_xckwpoluemhmwftataja_ind_8').style.opacity = 1;document.getElementById('_fb_xckwpoluemhmwftataja_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xckwpoluemhmwftataja_ind_8').style.textDecoration = 'none';document.getElementById('_fs_xckwpoluemhmwftataja_ind_8').style.opacity = 0;document.getElementById('_fb_xckwpoluemhmwftataja_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"87.45002872245595%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"82.85535981857248%\" y=\"40\" height=\"20\" width=\"4.594668903883473%\" onmouseover=\"document.getElementById('_tp_xckwpoluemhmwftataja_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_xckwpoluemhmwftataja_ind_4').style.opacity = 1;document.getElementById('_fb_xckwpoluemhmwftataja_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xckwpoluemhmwftataja_ind_4').style.textDecoration = 'none';document.getElementById('_fs_xckwpoluemhmwftataja_ind_4').style.opacity = 0;document.getElementById('_fb_xckwpoluemhmwftataja_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"90.84726554197057%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"87.45002872245595%\" y=\"40\" height=\"20\" width=\"3.3972368195146174%\" onmouseover=\"document.getElementById('_tp_xckwpoluemhmwftataja_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_xckwpoluemhmwftataja_ind_7').style.opacity = 1;document.getElementById('_fb_xckwpoluemhmwftataja_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xckwpoluemhmwftataja_ind_7').style.textDecoration = 'none';document.getElementById('_fs_xckwpoluemhmwftataja_ind_7').style.opacity = 0;document.getElementById('_fb_xckwpoluemhmwftataja_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"90.84726554197057%\" y=\"40\" height=\"20\" width=\"0.8193963085965663%\" onmouseover=\"document.getElementById('_tp_xckwpoluemhmwftataja_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_xckwpoluemhmwftataja_ind_3').style.opacity = 1;document.getElementById('_fb_xckwpoluemhmwftataja_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xckwpoluemhmwftataja_ind_3').style.textDecoration = 'none';document.getElementById('_fs_xckwpoluemhmwftataja_ind_3').style.opacity = 0;document.getElementById('_fb_xckwpoluemhmwftataja_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_xckwpoluemhmwftataja_ind_0'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xckwpoluemhmwftataja_ind_0').style.opacity = 1; document.getElementById('_fs_xckwpoluemhmwftataja_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xckwpoluemhmwftataja_ind_0').style.opacity = 0; document.getElementById('_fs_xckwpoluemhmwftataja_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.003</div\n",
|
|
" ><div id='_tp_xckwpoluemhmwftataja_ind_1'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.04618736383442265); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xckwpoluemhmwftataja_ind_1').style.opacity = 1; document.getElementById('_fs_xckwpoluemhmwftataja_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xckwpoluemhmwftataja_ind_1').style.opacity = 0; document.getElementById('_fs_xckwpoluemhmwftataja_ind_1').style.opacity = 0;\"\n",
|
|
" >im </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.02</div\n",
|
|
" ><div id='_tp_xckwpoluemhmwftataja_ind_2'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.32208358090711037); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xckwpoluemhmwftataja_ind_2').style.opacity = 1; document.getElementById('_fs_xckwpoluemhmwftataja_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xckwpoluemhmwftataja_ind_2').style.opacity = 0; document.getElementById('_fs_xckwpoluemhmwftataja_ind_2').style.opacity = 0;\"\n",
|
|
" >grabbing </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.002</div\n",
|
|
" ><div id='_tp_xckwpoluemhmwftataja_ind_3'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.022539116656763607); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xckwpoluemhmwftataja_ind_3').style.opacity = 1; document.getElementById('_fs_xckwpoluemhmwftataja_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xckwpoluemhmwftataja_ind_3').style.opacity = 0; document.getElementById('_fs_xckwpoluemhmwftataja_ind_3').style.opacity = 0;\"\n",
|
|
" >a </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.009</div\n",
|
|
" ><div id='_tp_xckwpoluemhmwftataja_ind_4'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.1328976034858387); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xckwpoluemhmwftataja_ind_4').style.opacity = 1; document.getElementById('_fs_xckwpoluemhmwftataja_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xckwpoluemhmwftataja_ind_4').style.opacity = 0; document.getElementById('_fs_xckwpoluemhmwftataja_ind_4').style.opacity = 0;\"\n",
|
|
" >minute </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_xckwpoluemhmwftataja_ind_5'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xckwpoluemhmwftataja_ind_5').style.opacity = 1; document.getElementById('_fs_xckwpoluemhmwftataja_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xckwpoluemhmwftataja_ind_5').style.opacity = 0; document.getElementById('_fs_xckwpoluemhmwftataja_ind_5').style.opacity = 0;\"\n",
|
|
" >to </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.008</div\n",
|
|
" ><div id='_tp_xckwpoluemhmwftataja_ind_6'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.1171321053673995); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xckwpoluemhmwftataja_ind_6').style.opacity = 1; document.getElementById('_fs_xckwpoluemhmwftataja_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xckwpoluemhmwftataja_ind_6').style.opacity = 0; document.getElementById('_fs_xckwpoluemhmwftataja_ind_6').style.opacity = 0;\"\n",
|
|
" >post </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.006</div\n",
|
|
" ><div id='_tp_xckwpoluemhmwftataja_ind_7'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.10136660724896014); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xckwpoluemhmwftataja_ind_7').style.opacity = 1; document.getElementById('_fs_xckwpoluemhmwftataja_ind_7').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xckwpoluemhmwftataja_ind_7').style.opacity = 0; document.getElementById('_fs_xckwpoluemhmwftataja_ind_7').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.042</div\n",
|
|
" ><div id='_tp_xckwpoluemhmwftataja_ind_8'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.6610417904535552); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xckwpoluemhmwftataja_ind_8').style.opacity = 1; document.getElementById('_fs_xckwpoluemhmwftataja_ind_8').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xckwpoluemhmwftataja_ind_8').style.opacity = 0; document.getElementById('_fs_xckwpoluemhmwftataja_ind_8').style.opacity = 0;\"\n",
|
|
" >feel </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.063</div\n",
|
|
" ><div id='_tp_xckwpoluemhmwftataja_ind_9'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 1.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xckwpoluemhmwftataja_ind_9').style.opacity = 1; document.getElementById('_fs_xckwpoluemhmwftataja_ind_9').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xckwpoluemhmwftataja_ind_9').style.opacity = 0; document.getElementById('_fs_xckwpoluemhmwftataja_ind_9').style.opacity = 0;\"\n",
|
|
" >greedy </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.006</div\n",
|
|
" ><div id='_tp_xckwpoluemhmwftataja_ind_10'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.09348385818974037); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xckwpoluemhmwftataja_ind_10').style.opacity = 1; document.getElementById('_fs_xckwpoluemhmwftataja_ind_10').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xckwpoluemhmwftataja_ind_10').style.opacity = 0; document.getElementById('_fs_xckwpoluemhmwftataja_ind_10').style.opacity = 0;\"\n",
|
|
" >wrong</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_xckwpoluemhmwftataja_ind_11'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xckwpoluemhmwftataja_ind_11').style.opacity = 1; document.getElementById('_fs_xckwpoluemhmwftataja_ind_11').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xckwpoluemhmwftataja_ind_11').style.opacity = 0; document.getElementById('_fs_xckwpoluemhmwftataja_ind_11').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_unvxfbqcaujtzhoysnxx_output_5' style='display: none';><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"48.705281698548966%\" y1=\"33\" x2=\"48.705281698548966%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"48.705281698548966%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.3</text><line x1=\"37.053446541506865%\" y1=\"33\" x2=\"37.053446541506865%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"37.053446541506865%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.1</text><line x1=\"25.40161138446477%\" y1=\"33\" x2=\"25.40161138446477%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"25.40161138446477%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.1</text><line x1=\"13.749776227422668%\" y1=\"33\" x2=\"13.749776227422668%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"13.749776227422668%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.3</text><line x1=\"60.357116855591066%\" y1=\"33\" x2=\"60.357116855591066%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"60.357116855591066%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.5</text><line x1=\"72.00895201263315%\" y1=\"33\" x2=\"72.00895201263315%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"72.00895201263315%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.7</text><line x1=\"83.66078716967526%\" y1=\"33\" x2=\"83.66078716967526%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"83.66078716967526%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.9</text><line x1=\"39.349217784140656%\" y1=\"33\" x2=\"39.349217784140656%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"39.349217784140656%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.139406</text><text x=\"39.349217784140656%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.139406</text><text x=\"39.349217784140656%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"31.31869760339116%\" y1=\"33\" x2=\"31.31869760339116%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"31.31869760339116%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.00156488</text><text x=\"31.31869760339116%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.00156488</text><text x=\"31.31869760339116%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">surprise</tspan>(inputs)</text><rect x=\"29.796123951890976%\" width=\"1.5225736515001862%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"30.36883591906477%\" x2=\"31.31869760339116%\" y1=\"60\" y2=\"60\" id=\"_fb_epoxxaftfyvwclvpaoci_ind_4\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"30.84376676122797%\" y=\"71\" font-size=\"12px\" id=\"_fs_epoxxaftfyvwclvpaoci_ind_4\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.016</text><svg x=\"30.36883591906477%\" y=\"40\" height=\"20\" width=\"0.9498616843263896%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">minute</text> </svg></svg><line x1=\"30.06772508197212%\" x2=\"30.36883591906477%\" y1=\"60\" y2=\"60\" id=\"_fb_epoxxaftfyvwclvpaoci_ind_7\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"30.218280500518446%\" y=\"71\" font-size=\"12px\" id=\"_fs_epoxxaftfyvwclvpaoci_ind_7\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.005</text><svg x=\"30.06772508197212%\" y=\"40\" height=\"20\" width=\"0.30111083709265074%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"29.796123951890976%\" x2=\"30.06772508197212%\" y1=\"60\" y2=\"60\" id=\"_fb_epoxxaftfyvwclvpaoci_ind_3\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"29.93192451693155%\" y=\"71\" font-size=\"12px\" id=\"_fs_epoxxaftfyvwclvpaoci_ind_3\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.005</text><svg x=\"29.796123951890976%\" y=\"40\" height=\"20\" width=\"0.2716011300811445%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">a</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"30.36883591906477%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"30.36883591906477%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"30.36883591906477%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"30.36883591906477%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"30.36883591906477%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"30.36883591906477%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"30.36883591906477%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"30.36883591906477%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"30.06772508197212%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"30.06772508197212%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"30.06772508197212%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"30.06772508197212%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"30.06772508197212%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"30.06772508197212%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"30.06772508197212%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"30.06772508197212%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"31.31869760339116%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"29.796123951890976%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"31.31869760339116%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"30.36883591906477%\" y=\"40\" height=\"20\" width=\"0.9498616843263896%\" onmouseover=\"document.getElementById('_tp_epoxxaftfyvwclvpaoci_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_epoxxaftfyvwclvpaoci_ind_4').style.opacity = 1;document.getElementById('_fb_epoxxaftfyvwclvpaoci_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_epoxxaftfyvwclvpaoci_ind_4').style.textDecoration = 'none';document.getElementById('_fs_epoxxaftfyvwclvpaoci_ind_4').style.opacity = 0;document.getElementById('_fb_epoxxaftfyvwclvpaoci_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"30.36883591906477%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"30.06772508197212%\" y=\"40\" height=\"20\" width=\"0.30111083709265074%\" onmouseover=\"document.getElementById('_tp_epoxxaftfyvwclvpaoci_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_epoxxaftfyvwclvpaoci_ind_7').style.opacity = 1;document.getElementById('_fb_epoxxaftfyvwclvpaoci_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_epoxxaftfyvwclvpaoci_ind_7').style.textDecoration = 'none';document.getElementById('_fs_epoxxaftfyvwclvpaoci_ind_7').style.opacity = 0;document.getElementById('_fb_epoxxaftfyvwclvpaoci_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"29.796123951890976%\" y=\"40\" height=\"20\" width=\"0.2716011300811445%\" onmouseover=\"document.getElementById('_tp_epoxxaftfyvwclvpaoci_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_epoxxaftfyvwclvpaoci_ind_3').style.opacity = 1;document.getElementById('_fb_epoxxaftfyvwclvpaoci_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_epoxxaftfyvwclvpaoci_ind_3').style.textDecoration = 'none';document.getElementById('_fs_epoxxaftfyvwclvpaoci_ind_3').style.opacity = 0;document.getElementById('_fb_epoxxaftfyvwclvpaoci_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"31.31869760339116%\" width=\"9.55309383224968%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"31.31869760339116%\" x2=\"34.61293614558378%\" y1=\"60\" y2=\"60\" id=\"_fb_epoxxaftfyvwclvpaoci_ind_9\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"32.96581687448747%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_epoxxaftfyvwclvpaoci_ind_9\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.057</text><svg x=\"31.31869760339116%\" y=\"40\" height=\"20\" width=\"3.2942385421926197%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">greedy</text> </svg></svg><line x1=\"34.61293614558378%\" x2=\"36.70054538626253%\" y1=\"60\" y2=\"60\" id=\"_fb_epoxxaftfyvwclvpaoci_ind_8\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"35.65674076592316%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_epoxxaftfyvwclvpaoci_ind_8\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.036</text><svg x=\"34.61293614558378%\" y=\"40\" height=\"20\" width=\"2.087609240678752%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"36.70054538626253%\" x2=\"38.088332360504%\" y1=\"60\" y2=\"60\" id=\"_fb_epoxxaftfyvwclvpaoci_ind_10\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"37.394438873383265%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_epoxxaftfyvwclvpaoci_ind_10\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.024</text><svg x=\"36.70054538626253%\" y=\"40\" height=\"20\" width=\"1.3877869742414646%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">wrong</text> </svg></svg><line x1=\"38.088332360504%\" x2=\"39.10428507198777%\" y1=\"60\" y2=\"60\" id=\"_fb_epoxxaftfyvwclvpaoci_ind_6\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"38.596308716245886%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_epoxxaftfyvwclvpaoci_ind_6\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.017</text><svg x=\"38.088332360504%\" y=\"40\" height=\"20\" width=\"1.01595271148377%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">post</text> </svg></svg><line x1=\"39.10428507198777%\" x2=\"40.0910490266008%\" y1=\"60\" y2=\"60\" id=\"_fb_epoxxaftfyvwclvpaoci_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"39.59766704929429%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_epoxxaftfyvwclvpaoci_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.017</text><svg x=\"39.10428507198777%\" y=\"40\" height=\"20\" width=\"0.986763954613032%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">grabbing</text> </svg></svg><line x1=\"40.0910490266008%\" x2=\"40.790216063918706%\" y1=\"60\" y2=\"60\" id=\"_fb_epoxxaftfyvwclvpaoci_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"40.44063254525975%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_epoxxaftfyvwclvpaoci_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.012</text><svg x=\"40.0910490266008%\" y=\"40\" height=\"20\" width=\"0.6991670373179062%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">im</text> </svg></svg><line x1=\"40.790216063918706%\" x2=\"40.87179104057416%\" y1=\"60\" y2=\"60\" id=\"_fb_epoxxaftfyvwclvpaoci_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"40.83100355224643%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_epoxxaftfyvwclvpaoci_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.001</text><svg x=\"40.790216063918706%\" y=\"40\" height=\"20\" width=\"0.08157497665545321%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><line x1=\"40.87179104057416%\" x2=\"40.871791383078325%\" y1=\"60\" y2=\"60\" id=\"_fb_epoxxaftfyvwclvpaoci_ind_11\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"40.87179121182624%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_epoxxaftfyvwclvpaoci_ind_11\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"40.87179104057416%\" y=\"40\" height=\"20\" width=\"3.4250416547365603e-07%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><line x1=\"40.871791383078325%\" x2=\"40.871791435640844%\" y1=\"60\" y2=\"60\" id=\"_fb_epoxxaftfyvwclvpaoci_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"40.87179140935959%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_epoxxaftfyvwclvpaoci_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"40.871791383078325%\" y=\"40\" height=\"20\" width=\"5.256251967011849e-08%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"34.61293614558378%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"34.61293614558378%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"34.61293614558378%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"34.61293614558378%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"34.61293614558378%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"34.61293614558378%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"34.61293614558378%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"34.61293614558378%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"36.70054538626253%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"36.70054538626253%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"36.70054538626253%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"36.70054538626253%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"36.70054538626253%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"36.70054538626253%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"36.70054538626253%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"36.70054538626253%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"38.088332360504%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"38.088332360504%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"38.088332360504%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"38.088332360504%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"38.088332360504%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"38.088332360504%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"38.088332360504%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"38.088332360504%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"39.10428507198777%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"39.10428507198777%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"39.10428507198777%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"39.10428507198777%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"39.10428507198777%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"39.10428507198777%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"39.10428507198777%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"39.10428507198777%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"40.0910490266008%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"40.0910490266008%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"40.0910490266008%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"40.0910490266008%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"40.0910490266008%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"40.0910490266008%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"40.0910490266008%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"40.0910490266008%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"40.790216063918706%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"40.790216063918706%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"40.790216063918706%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"40.790216063918706%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"40.790216063918706%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"40.790216063918706%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"40.790216063918706%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"40.790216063918706%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"40.87179104057416%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"40.87179104057416%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"40.87179104057416%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"40.87179104057416%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"40.87179104057416%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"40.87179104057416%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"40.87179104057416%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"40.87179104057416%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"40.871791383078325%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"40.871791383078325%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"40.871791383078325%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"40.871791383078325%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"40.871791383078325%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"40.871791383078325%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"40.871791383078325%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"40.871791383078325%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"31.31869760339116%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"40.871791435640844%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"34.61293614558378%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"31.31869760339116%\" y=\"40\" height=\"20\" width=\"3.2942385421926197%\" onmouseover=\"document.getElementById('_tp_epoxxaftfyvwclvpaoci_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_epoxxaftfyvwclvpaoci_ind_9').style.opacity = 1;document.getElementById('_fb_epoxxaftfyvwclvpaoci_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_epoxxaftfyvwclvpaoci_ind_9').style.textDecoration = 'none';document.getElementById('_fs_epoxxaftfyvwclvpaoci_ind_9').style.opacity = 0;document.getElementById('_fb_epoxxaftfyvwclvpaoci_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"36.70054538626253%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"34.61293614558378%\" y=\"40\" height=\"20\" width=\"2.087609240678752%\" onmouseover=\"document.getElementById('_tp_epoxxaftfyvwclvpaoci_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_epoxxaftfyvwclvpaoci_ind_8').style.opacity = 1;document.getElementById('_fb_epoxxaftfyvwclvpaoci_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_epoxxaftfyvwclvpaoci_ind_8').style.textDecoration = 'none';document.getElementById('_fs_epoxxaftfyvwclvpaoci_ind_8').style.opacity = 0;document.getElementById('_fb_epoxxaftfyvwclvpaoci_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"38.088332360504%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"36.70054538626253%\" y=\"40\" height=\"20\" width=\"1.3877869742414646%\" onmouseover=\"document.getElementById('_tp_epoxxaftfyvwclvpaoci_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_epoxxaftfyvwclvpaoci_ind_10').style.opacity = 1;document.getElementById('_fb_epoxxaftfyvwclvpaoci_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_epoxxaftfyvwclvpaoci_ind_10').style.textDecoration = 'none';document.getElementById('_fs_epoxxaftfyvwclvpaoci_ind_10').style.opacity = 0;document.getElementById('_fb_epoxxaftfyvwclvpaoci_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"39.10428507198777%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"38.088332360504%\" y=\"40\" height=\"20\" width=\"1.01595271148377%\" onmouseover=\"document.getElementById('_tp_epoxxaftfyvwclvpaoci_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_epoxxaftfyvwclvpaoci_ind_6').style.opacity = 1;document.getElementById('_fb_epoxxaftfyvwclvpaoci_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_epoxxaftfyvwclvpaoci_ind_6').style.textDecoration = 'none';document.getElementById('_fs_epoxxaftfyvwclvpaoci_ind_6').style.opacity = 0;document.getElementById('_fb_epoxxaftfyvwclvpaoci_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"40.0910490266008%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"39.10428507198777%\" y=\"40\" height=\"20\" width=\"0.986763954613032%\" onmouseover=\"document.getElementById('_tp_epoxxaftfyvwclvpaoci_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_epoxxaftfyvwclvpaoci_ind_2').style.opacity = 1;document.getElementById('_fb_epoxxaftfyvwclvpaoci_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_epoxxaftfyvwclvpaoci_ind_2').style.textDecoration = 'none';document.getElementById('_fs_epoxxaftfyvwclvpaoci_ind_2').style.opacity = 0;document.getElementById('_fb_epoxxaftfyvwclvpaoci_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"40.790216063918706%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"40.0910490266008%\" y=\"40\" height=\"20\" width=\"0.6991670373179062%\" onmouseover=\"document.getElementById('_tp_epoxxaftfyvwclvpaoci_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_epoxxaftfyvwclvpaoci_ind_1').style.opacity = 1;document.getElementById('_fb_epoxxaftfyvwclvpaoci_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_epoxxaftfyvwclvpaoci_ind_1').style.textDecoration = 'none';document.getElementById('_fs_epoxxaftfyvwclvpaoci_ind_1').style.opacity = 0;document.getElementById('_fb_epoxxaftfyvwclvpaoci_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"40.87179104057416%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"40.790216063918706%\" y=\"40\" height=\"20\" width=\"0.08157497665545321%\" onmouseover=\"document.getElementById('_tp_epoxxaftfyvwclvpaoci_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_epoxxaftfyvwclvpaoci_ind_5').style.opacity = 1;document.getElementById('_fb_epoxxaftfyvwclvpaoci_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_epoxxaftfyvwclvpaoci_ind_5').style.textDecoration = 'none';document.getElementById('_fs_epoxxaftfyvwclvpaoci_ind_5').style.opacity = 0;document.getElementById('_fb_epoxxaftfyvwclvpaoci_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"40.871791383078325%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"40.87179104057416%\" y=\"40\" height=\"20\" width=\"3.4250416547365603e-07%\" onmouseover=\"document.getElementById('_tp_epoxxaftfyvwclvpaoci_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_epoxxaftfyvwclvpaoci_ind_11').style.opacity = 1;document.getElementById('_fb_epoxxaftfyvwclvpaoci_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_epoxxaftfyvwclvpaoci_ind_11').style.textDecoration = 'none';document.getElementById('_fs_epoxxaftfyvwclvpaoci_ind_11').style.opacity = 0;document.getElementById('_fb_epoxxaftfyvwclvpaoci_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"40.871791383078325%\" y=\"40\" height=\"20\" width=\"5.256251967011849e-08%\" onmouseover=\"document.getElementById('_tp_epoxxaftfyvwclvpaoci_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_epoxxaftfyvwclvpaoci_ind_0').style.opacity = 1;document.getElementById('_fb_epoxxaftfyvwclvpaoci_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_epoxxaftfyvwclvpaoci_ind_0').style.textDecoration = 'none';document.getElementById('_fs_epoxxaftfyvwclvpaoci_ind_0').style.opacity = 0;document.getElementById('_fb_epoxxaftfyvwclvpaoci_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_epoxxaftfyvwclvpaoci_ind_0'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_epoxxaftfyvwclvpaoci_ind_0').style.opacity = 1; document.getElementById('_fs_epoxxaftfyvwclvpaoci_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_epoxxaftfyvwclvpaoci_ind_0').style.opacity = 0; document.getElementById('_fs_epoxxaftfyvwclvpaoci_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.012</div\n",
|
|
" ><div id='_tp_epoxxaftfyvwclvpaoci_ind_1'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_epoxxaftfyvwclvpaoci_ind_1').style.opacity = 1; document.getElementById('_fs_epoxxaftfyvwclvpaoci_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_epoxxaftfyvwclvpaoci_ind_1').style.opacity = 0; document.getElementById('_fs_epoxxaftfyvwclvpaoci_ind_1').style.opacity = 0;\"\n",
|
|
" >im </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.017</div\n",
|
|
" ><div id='_tp_epoxxaftfyvwclvpaoci_ind_2'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_epoxxaftfyvwclvpaoci_ind_2').style.opacity = 1; document.getElementById('_fs_epoxxaftfyvwclvpaoci_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_epoxxaftfyvwclvpaoci_ind_2').style.opacity = 0; document.getElementById('_fs_epoxxaftfyvwclvpaoci_ind_2').style.opacity = 0;\"\n",
|
|
" >grabbing </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.005</div\n",
|
|
" ><div id='_tp_epoxxaftfyvwclvpaoci_ind_3'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_epoxxaftfyvwclvpaoci_ind_3').style.opacity = 1; document.getElementById('_fs_epoxxaftfyvwclvpaoci_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_epoxxaftfyvwclvpaoci_ind_3').style.opacity = 0; document.getElementById('_fs_epoxxaftfyvwclvpaoci_ind_3').style.opacity = 0;\"\n",
|
|
" >a </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.016</div\n",
|
|
" ><div id='_tp_epoxxaftfyvwclvpaoci_ind_4'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.014656367597544035); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_epoxxaftfyvwclvpaoci_ind_4').style.opacity = 1; document.getElementById('_fs_epoxxaftfyvwclvpaoci_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_epoxxaftfyvwclvpaoci_ind_4').style.opacity = 0; document.getElementById('_fs_epoxxaftfyvwclvpaoci_ind_4').style.opacity = 0;\"\n",
|
|
" >minute </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.001</div\n",
|
|
" ><div id='_tp_epoxxaftfyvwclvpaoci_ind_5'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_epoxxaftfyvwclvpaoci_ind_5').style.opacity = 1; document.getElementById('_fs_epoxxaftfyvwclvpaoci_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_epoxxaftfyvwclvpaoci_ind_5').style.opacity = 0; document.getElementById('_fs_epoxxaftfyvwclvpaoci_ind_5').style.opacity = 0;\"\n",
|
|
" >to </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.017</div\n",
|
|
" ><div id='_tp_epoxxaftfyvwclvpaoci_ind_6'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_epoxxaftfyvwclvpaoci_ind_6').style.opacity = 1; document.getElementById('_fs_epoxxaftfyvwclvpaoci_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_epoxxaftfyvwclvpaoci_ind_6').style.opacity = 0; document.getElementById('_fs_epoxxaftfyvwclvpaoci_ind_6').style.opacity = 0;\"\n",
|
|
" >post </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.005</div\n",
|
|
" ><div id='_tp_epoxxaftfyvwclvpaoci_ind_7'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_epoxxaftfyvwclvpaoci_ind_7').style.opacity = 1; document.getElementById('_fs_epoxxaftfyvwclvpaoci_ind_7').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_epoxxaftfyvwclvpaoci_ind_7').style.opacity = 0; document.getElementById('_fs_epoxxaftfyvwclvpaoci_ind_7').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.036</div\n",
|
|
" ><div id='_tp_epoxxaftfyvwclvpaoci_ind_8'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03830461477520309); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_epoxxaftfyvwclvpaoci_ind_8').style.opacity = 1; document.getElementById('_fs_epoxxaftfyvwclvpaoci_ind_8').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_epoxxaftfyvwclvpaoci_ind_8').style.opacity = 0; document.getElementById('_fs_epoxxaftfyvwclvpaoci_ind_8').style.opacity = 0;\"\n",
|
|
" >feel </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.057</div\n",
|
|
" ><div id='_tp_epoxxaftfyvwclvpaoci_ind_9'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.06195286195286191); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_epoxxaftfyvwclvpaoci_ind_9').style.opacity = 1; document.getElementById('_fs_epoxxaftfyvwclvpaoci_ind_9').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_epoxxaftfyvwclvpaoci_ind_9').style.opacity = 0; document.getElementById('_fs_epoxxaftfyvwclvpaoci_ind_9').style.opacity = 0;\"\n",
|
|
" >greedy </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.024</div\n",
|
|
" ><div id='_tp_epoxxaftfyvwclvpaoci_ind_10'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.022539116656763607); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_epoxxaftfyvwclvpaoci_ind_10').style.opacity = 1; document.getElementById('_fs_epoxxaftfyvwclvpaoci_ind_10').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_epoxxaftfyvwclvpaoci_ind_10').style.opacity = 0; document.getElementById('_fs_epoxxaftfyvwclvpaoci_ind_10').style.opacity = 0;\"\n",
|
|
" >wrong</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_epoxxaftfyvwclvpaoci_ind_11'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_epoxxaftfyvwclvpaoci_ind_11').style.opacity = 1; document.getElementById('_fs_epoxxaftfyvwclvpaoci_ind_11').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_epoxxaftfyvwclvpaoci_ind_11').style.opacity = 0; document.getElementById('_fs_epoxxaftfyvwclvpaoci_ind_11').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_unvxfbqcaujtzhoysnxx_output_5_zoom' style='display: none;'><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"49.78717072121679%\" y1=\"33\" x2=\"49.78717072121679%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"49.78717072121679%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.07</text><line x1=\"36.63690837428757%\" y1=\"33\" x2=\"36.63690837428757%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"36.63690837428757%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.04</text><line x1=\"23.486646027358354%\" y1=\"33\" x2=\"23.486646027358354%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"23.486646027358354%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.01</text><line x1=\"10.336383680429135%\" y1=\"33\" x2=\"10.336383680429135%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"10.336383680429135%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.02</text><line x1=\"62.937433068146014%\" y1=\"33\" x2=\"62.937433068146014%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"62.937433068146014%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.1</text><line x1=\"76.08769541507523%\" y1=\"33\" x2=\"76.08769541507523%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"76.08769541507523%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.13</text><line x1=\"89.23795776200446%\" y1=\"33\" x2=\"89.23795776200446%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"89.23795776200446%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.16</text><line x1=\"80.21081745911548%\" y1=\"33\" x2=\"80.21081745911548%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"80.21081745911548%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.139406</text><text x=\"80.21081745911548%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.139406</text><text x=\"80.21081745911548%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"19.78917815746375%\" y1=\"33\" x2=\"19.78917815746375%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"19.78917815746375%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.00156488</text><text x=\"19.78917815746375%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.00156488</text><text x=\"19.78917815746375%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">surprise</tspan>(inputs)</text><rect x=\"8.33333296804827%\" width=\"11.45584518941548%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"12.642418198575001%\" x2=\"19.78917815746375%\" y1=\"60\" y2=\"60\" id=\"_fb_fgvwgnasyycxwbqeropk_ind_4\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"16.215798178019377%\" y=\"71\" font-size=\"12px\" id=\"_fs_fgvwgnasyycxwbqeropk_ind_4\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.016</text><svg x=\"12.642418198575001%\" y=\"40\" height=\"20\" width=\"7.146759958888747%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">minute</text> </svg></svg><line x1=\"10.376860055499321%\" x2=\"12.642418198575001%\" y1=\"60\" y2=\"60\" id=\"_fb_fgvwgnasyycxwbqeropk_ind_7\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"11.509639127037161%\" y=\"71\" font-size=\"12px\" id=\"_fs_fgvwgnasyycxwbqeropk_ind_7\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.005</text><svg x=\"10.376860055499321%\" y=\"40\" height=\"20\" width=\"2.2655581430756797%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"8.33333296804827%\" x2=\"10.376860055499321%\" y1=\"60\" y2=\"60\" id=\"_fb_fgvwgnasyycxwbqeropk_ind_3\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"9.355096511773795%\" y=\"71\" font-size=\"12px\" id=\"_fs_fgvwgnasyycxwbqeropk_ind_3\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.005</text><svg x=\"8.33333296804827%\" y=\"40\" height=\"20\" width=\"2.043527087451052%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">a</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"12.642418198575001%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"12.642418198575001%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"12.642418198575001%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"12.642418198575001%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"12.642418198575001%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"12.642418198575001%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"12.642418198575001%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"12.642418198575001%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"10.376860055499321%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"10.376860055499321%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"10.376860055499321%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"10.376860055499321%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"10.376860055499321%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"10.376860055499321%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"10.376860055499321%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"10.376860055499321%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"19.78917815746375%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.33333296804827%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"19.78917815746375%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"12.642418198575001%\" y=\"40\" height=\"20\" width=\"7.146759958888747%\" onmouseover=\"document.getElementById('_tp_fgvwgnasyycxwbqeropk_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_fgvwgnasyycxwbqeropk_ind_4').style.opacity = 1;document.getElementById('_fb_fgvwgnasyycxwbqeropk_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fgvwgnasyycxwbqeropk_ind_4').style.textDecoration = 'none';document.getElementById('_fs_fgvwgnasyycxwbqeropk_ind_4').style.opacity = 0;document.getElementById('_fb_fgvwgnasyycxwbqeropk_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"12.642418198575001%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"10.376860055499321%\" y=\"40\" height=\"20\" width=\"2.2655581430756797%\" onmouseover=\"document.getElementById('_tp_fgvwgnasyycxwbqeropk_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_fgvwgnasyycxwbqeropk_ind_7').style.opacity = 1;document.getElementById('_fb_fgvwgnasyycxwbqeropk_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fgvwgnasyycxwbqeropk_ind_7').style.textDecoration = 'none';document.getElementById('_fs_fgvwgnasyycxwbqeropk_ind_7').style.opacity = 0;document.getElementById('_fb_fgvwgnasyycxwbqeropk_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"8.33333296804827%\" y=\"40\" height=\"20\" width=\"2.043527087451052%\" onmouseover=\"document.getElementById('_tp_fgvwgnasyycxwbqeropk_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_fgvwgnasyycxwbqeropk_ind_3').style.opacity = 1;document.getElementById('_fb_fgvwgnasyycxwbqeropk_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fgvwgnasyycxwbqeropk_ind_3').style.textDecoration = 'none';document.getElementById('_fs_fgvwgnasyycxwbqeropk_ind_3').style.opacity = 0;document.getElementById('_fb_fgvwgnasyycxwbqeropk_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"19.78917815746375%\" width=\"71.87748449106721%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"19.78917815746375%\" x2=\"44.57503118938837%\" y1=\"60\" y2=\"60\" id=\"_fb_fgvwgnasyycxwbqeropk_ind_9\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"32.18210467342606%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_fgvwgnasyycxwbqeropk_ind_9\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.057</text><svg x=\"19.78917815746375%\" y=\"40\" height=\"20\" width=\"24.78585303192462%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">greedy</text> </svg></svg><line x1=\"44.57503118938837%\" x2=\"60.2822045360736%\" y1=\"60\" y2=\"60\" id=\"_fb_fgvwgnasyycxwbqeropk_ind_8\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"52.42861786273099%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_fgvwgnasyycxwbqeropk_ind_8\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.036</text><svg x=\"44.57503118938837%\" y=\"40\" height=\"20\" width=\"15.70717334668523%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"60.2822045360736%\" x2=\"70.72391467412375%\" y1=\"60\" y2=\"60\" id=\"_fb_fgvwgnasyycxwbqeropk_ind_10\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"65.50305960509867%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_fgvwgnasyycxwbqeropk_ind_10\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.024</text><svg x=\"60.2822045360736%\" y=\"40\" height=\"20\" width=\"10.441710138050148%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">wrong</text> </svg></svg><line x1=\"70.72391467412375%\" x2=\"78.36794356629424%\" y1=\"60\" y2=\"60\" id=\"_fb_fgvwgnasyycxwbqeropk_ind_6\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"74.545929120209%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_fgvwgnasyycxwbqeropk_ind_6\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.017</text><svg x=\"70.72391467412375%\" y=\"40\" height=\"20\" width=\"7.644028892170496%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">post</text> </svg></svg><line x1=\"78.36794356629424%\" x2=\"85.79235623191755%\" y1=\"60\" y2=\"60\" id=\"_fb_fgvwgnasyycxwbqeropk_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"82.08014989910589%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_fgvwgnasyycxwbqeropk_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.017</text><svg x=\"78.36794356629424%\" y=\"40\" height=\"20\" width=\"7.424412665623308%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">grabbing</text> </svg></svg><line x1=\"85.79235623191755%\" x2=\"91.05288949621281%\" y1=\"60\" y2=\"60\" id=\"_fb_fgvwgnasyycxwbqeropk_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"88.42262286406518%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_fgvwgnasyycxwbqeropk_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.012</text><svg x=\"85.79235623191755%\" y=\"40\" height=\"20\" width=\"5.260533264295262%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">im</text> </svg></svg><line x1=\"91.05288949621281%\" x2=\"91.66665967604895%\" y1=\"60\" y2=\"60\" id=\"_fb_fgvwgnasyycxwbqeropk_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.35977458613088%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_fgvwgnasyycxwbqeropk_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.001</text><svg x=\"91.05288949621281%\" y=\"40\" height=\"20\" width=\"0.6137701798361377%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><line x1=\"91.66665967604895%\" x2=\"91.66666225305052%\" y1=\"60\" y2=\"60\" id=\"_fb_fgvwgnasyycxwbqeropk_ind_11\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.66666096454973%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_fgvwgnasyycxwbqeropk_ind_11\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"91.66665967604895%\" y=\"40\" height=\"20\" width=\"2.5770015668058477e-06%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><line x1=\"91.66666225305052%\" x2=\"91.66666264853096%\" y1=\"60\" y2=\"60\" id=\"_fb_fgvwgnasyycxwbqeropk_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.66666245079074%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_fgvwgnasyycxwbqeropk_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"91.66666225305052%\" y=\"40\" height=\"20\" width=\"3.95480441284235e-07%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"44.57503118938837%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"44.57503118938837%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"44.57503118938837%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"44.57503118938837%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"44.57503118938837%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"44.57503118938837%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"44.57503118938837%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"44.57503118938837%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"60.2822045360736%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"60.2822045360736%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"60.2822045360736%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"60.2822045360736%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"60.2822045360736%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"60.2822045360736%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"60.2822045360736%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"60.2822045360736%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"70.72391467412375%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"70.72391467412375%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"70.72391467412375%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"70.72391467412375%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"70.72391467412375%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"70.72391467412375%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"70.72391467412375%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"70.72391467412375%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"78.36794356629424%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"78.36794356629424%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"78.36794356629424%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"78.36794356629424%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"78.36794356629424%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"78.36794356629424%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"78.36794356629424%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"78.36794356629424%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"85.79235623191755%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"85.79235623191755%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"85.79235623191755%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"85.79235623191755%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"85.79235623191755%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"85.79235623191755%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"85.79235623191755%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"85.79235623191755%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.05288949621281%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.05288949621281%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.05288949621281%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.05288949621281%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.05288949621281%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.05288949621281%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.05288949621281%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.05288949621281%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.66665967604895%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.66665967604895%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.66665967604895%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.66665967604895%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.66665967604895%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.66665967604895%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.66665967604895%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.66665967604895%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.66666225305052%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.66666225305052%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.66666225305052%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.66666225305052%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.66666225305052%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.66666225305052%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.66666225305052%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.66666225305052%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"19.78917815746375%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66666264853096%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"44.57503118938837%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"19.78917815746375%\" y=\"40\" height=\"20\" width=\"24.78585303192462%\" onmouseover=\"document.getElementById('_tp_fgvwgnasyycxwbqeropk_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_fgvwgnasyycxwbqeropk_ind_9').style.opacity = 1;document.getElementById('_fb_fgvwgnasyycxwbqeropk_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fgvwgnasyycxwbqeropk_ind_9').style.textDecoration = 'none';document.getElementById('_fs_fgvwgnasyycxwbqeropk_ind_9').style.opacity = 0;document.getElementById('_fb_fgvwgnasyycxwbqeropk_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"60.2822045360736%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"44.57503118938837%\" y=\"40\" height=\"20\" width=\"15.70717334668523%\" onmouseover=\"document.getElementById('_tp_fgvwgnasyycxwbqeropk_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_fgvwgnasyycxwbqeropk_ind_8').style.opacity = 1;document.getElementById('_fb_fgvwgnasyycxwbqeropk_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fgvwgnasyycxwbqeropk_ind_8').style.textDecoration = 'none';document.getElementById('_fs_fgvwgnasyycxwbqeropk_ind_8').style.opacity = 0;document.getElementById('_fb_fgvwgnasyycxwbqeropk_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"70.72391467412375%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"60.2822045360736%\" y=\"40\" height=\"20\" width=\"10.441710138050148%\" onmouseover=\"document.getElementById('_tp_fgvwgnasyycxwbqeropk_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_fgvwgnasyycxwbqeropk_ind_10').style.opacity = 1;document.getElementById('_fb_fgvwgnasyycxwbqeropk_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fgvwgnasyycxwbqeropk_ind_10').style.textDecoration = 'none';document.getElementById('_fs_fgvwgnasyycxwbqeropk_ind_10').style.opacity = 0;document.getElementById('_fb_fgvwgnasyycxwbqeropk_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"78.36794356629424%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"70.72391467412375%\" y=\"40\" height=\"20\" width=\"7.644028892170496%\" onmouseover=\"document.getElementById('_tp_fgvwgnasyycxwbqeropk_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_fgvwgnasyycxwbqeropk_ind_6').style.opacity = 1;document.getElementById('_fb_fgvwgnasyycxwbqeropk_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fgvwgnasyycxwbqeropk_ind_6').style.textDecoration = 'none';document.getElementById('_fs_fgvwgnasyycxwbqeropk_ind_6').style.opacity = 0;document.getElementById('_fb_fgvwgnasyycxwbqeropk_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"85.79235623191755%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"78.36794356629424%\" y=\"40\" height=\"20\" width=\"7.424412665623308%\" onmouseover=\"document.getElementById('_tp_fgvwgnasyycxwbqeropk_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_fgvwgnasyycxwbqeropk_ind_2').style.opacity = 1;document.getElementById('_fb_fgvwgnasyycxwbqeropk_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fgvwgnasyycxwbqeropk_ind_2').style.textDecoration = 'none';document.getElementById('_fs_fgvwgnasyycxwbqeropk_ind_2').style.opacity = 0;document.getElementById('_fb_fgvwgnasyycxwbqeropk_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.05288949621281%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"85.79235623191755%\" y=\"40\" height=\"20\" width=\"5.260533264295262%\" onmouseover=\"document.getElementById('_tp_fgvwgnasyycxwbqeropk_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_fgvwgnasyycxwbqeropk_ind_1').style.opacity = 1;document.getElementById('_fb_fgvwgnasyycxwbqeropk_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fgvwgnasyycxwbqeropk_ind_1').style.textDecoration = 'none';document.getElementById('_fs_fgvwgnasyycxwbqeropk_ind_1').style.opacity = 0;document.getElementById('_fb_fgvwgnasyycxwbqeropk_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66665967604895%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.05288949621281%\" y=\"40\" height=\"20\" width=\"0.6137701798361377%\" onmouseover=\"document.getElementById('_tp_fgvwgnasyycxwbqeropk_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_fgvwgnasyycxwbqeropk_ind_5').style.opacity = 1;document.getElementById('_fb_fgvwgnasyycxwbqeropk_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fgvwgnasyycxwbqeropk_ind_5').style.textDecoration = 'none';document.getElementById('_fs_fgvwgnasyycxwbqeropk_ind_5').style.opacity = 0;document.getElementById('_fb_fgvwgnasyycxwbqeropk_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66666225305052%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.66665967604895%\" y=\"40\" height=\"20\" width=\"2.5770015668058477e-06%\" onmouseover=\"document.getElementById('_tp_fgvwgnasyycxwbqeropk_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_fgvwgnasyycxwbqeropk_ind_11').style.opacity = 1;document.getElementById('_fb_fgvwgnasyycxwbqeropk_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fgvwgnasyycxwbqeropk_ind_11').style.textDecoration = 'none';document.getElementById('_fs_fgvwgnasyycxwbqeropk_ind_11').style.opacity = 0;document.getElementById('_fb_fgvwgnasyycxwbqeropk_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"91.66666225305052%\" y=\"40\" height=\"20\" width=\"3.95480441284235e-07%\" onmouseover=\"document.getElementById('_tp_fgvwgnasyycxwbqeropk_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_fgvwgnasyycxwbqeropk_ind_0').style.opacity = 1;document.getElementById('_fb_fgvwgnasyycxwbqeropk_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_fgvwgnasyycxwbqeropk_ind_0').style.textDecoration = 'none';document.getElementById('_fs_fgvwgnasyycxwbqeropk_ind_0').style.opacity = 0;document.getElementById('_fb_fgvwgnasyycxwbqeropk_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_fgvwgnasyycxwbqeropk_ind_0'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_fgvwgnasyycxwbqeropk_ind_0').style.opacity = 1; document.getElementById('_fs_fgvwgnasyycxwbqeropk_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_fgvwgnasyycxwbqeropk_ind_0').style.opacity = 0; document.getElementById('_fs_fgvwgnasyycxwbqeropk_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.012</div\n",
|
|
" ><div id='_tp_fgvwgnasyycxwbqeropk_ind_1'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.21172509407803525); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_fgvwgnasyycxwbqeropk_ind_1').style.opacity = 1; document.getElementById('_fs_fgvwgnasyycxwbqeropk_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_fgvwgnasyycxwbqeropk_ind_1').style.opacity = 0; document.getElementById('_fs_fgvwgnasyycxwbqeropk_ind_1').style.opacity = 0;\"\n",
|
|
" >im </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.017</div\n",
|
|
" ><div id='_tp_fgvwgnasyycxwbqeropk_ind_2'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.2984353337294513); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_fgvwgnasyycxwbqeropk_ind_2').style.opacity = 1; document.getElementById('_fs_fgvwgnasyycxwbqeropk_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_fgvwgnasyycxwbqeropk_ind_2').style.opacity = 0; document.getElementById('_fs_fgvwgnasyycxwbqeropk_ind_2').style.opacity = 0;\"\n",
|
|
" >grabbing </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.005</div\n",
|
|
" ><div id='_tp_fgvwgnasyycxwbqeropk_ind_3'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.07771836007130124); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_fgvwgnasyycxwbqeropk_ind_3').style.opacity = 1; document.getElementById('_fs_fgvwgnasyycxwbqeropk_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_fgvwgnasyycxwbqeropk_ind_3').style.opacity = 0; document.getElementById('_fs_fgvwgnasyycxwbqeropk_ind_3').style.opacity = 0;\"\n",
|
|
" >a </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.016</div\n",
|
|
" ><div id='_tp_fgvwgnasyycxwbqeropk_ind_4'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.2826698356110118); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_fgvwgnasyycxwbqeropk_ind_4').style.opacity = 1; document.getElementById('_fs_fgvwgnasyycxwbqeropk_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_fgvwgnasyycxwbqeropk_ind_4').style.opacity = 0; document.getElementById('_fs_fgvwgnasyycxwbqeropk_ind_4').style.opacity = 0;\"\n",
|
|
" >minute </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.001</div\n",
|
|
" ><div id='_tp_fgvwgnasyycxwbqeropk_ind_5'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.022539116656763607); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_fgvwgnasyycxwbqeropk_ind_5').style.opacity = 1; document.getElementById('_fs_fgvwgnasyycxwbqeropk_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_fgvwgnasyycxwbqeropk_ind_5').style.opacity = 0; document.getElementById('_fs_fgvwgnasyycxwbqeropk_ind_5').style.opacity = 0;\"\n",
|
|
" >to </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.017</div\n",
|
|
" ><div id='_tp_fgvwgnasyycxwbqeropk_ind_6'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.30631808278867095); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_fgvwgnasyycxwbqeropk_ind_6').style.opacity = 1; document.getElementById('_fs_fgvwgnasyycxwbqeropk_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_fgvwgnasyycxwbqeropk_ind_6').style.opacity = 0; document.getElementById('_fs_fgvwgnasyycxwbqeropk_ind_6').style.opacity = 0;\"\n",
|
|
" >post </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.005</div\n",
|
|
" ><div id='_tp_fgvwgnasyycxwbqeropk_ind_7'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.08560110913052081); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_fgvwgnasyycxwbqeropk_ind_7').style.opacity = 1; document.getElementById('_fs_fgvwgnasyycxwbqeropk_ind_7').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_fgvwgnasyycxwbqeropk_ind_7').style.opacity = 0; document.getElementById('_fs_fgvwgnasyycxwbqeropk_ind_7').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.036</div\n",
|
|
" ><div id='_tp_fgvwgnasyycxwbqeropk_ind_8'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.6373935432758963); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_fgvwgnasyycxwbqeropk_ind_8').style.opacity = 1; document.getElementById('_fs_fgvwgnasyycxwbqeropk_ind_8').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_fgvwgnasyycxwbqeropk_ind_8').style.opacity = 0; document.getElementById('_fs_fgvwgnasyycxwbqeropk_ind_8').style.opacity = 0;\"\n",
|
|
" >feel </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.057</div\n",
|
|
" ><div id='_tp_fgvwgnasyycxwbqeropk_ind_9'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 1.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_fgvwgnasyycxwbqeropk_ind_9').style.opacity = 1; document.getElementById('_fs_fgvwgnasyycxwbqeropk_ind_9').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_fgvwgnasyycxwbqeropk_ind_9').style.opacity = 0; document.getElementById('_fs_fgvwgnasyycxwbqeropk_ind_9').style.opacity = 0;\"\n",
|
|
" >greedy </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.024</div\n",
|
|
" ><div id='_tp_fgvwgnasyycxwbqeropk_ind_10'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.41667656961774613); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_fgvwgnasyycxwbqeropk_ind_10').style.opacity = 1; document.getElementById('_fs_fgvwgnasyycxwbqeropk_ind_10').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_fgvwgnasyycxwbqeropk_ind_10').style.opacity = 0; document.getElementById('_fs_fgvwgnasyycxwbqeropk_ind_10').style.opacity = 0;\"\n",
|
|
" >wrong</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_fgvwgnasyycxwbqeropk_ind_11'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_fgvwgnasyycxwbqeropk_ind_11').style.opacity = 1; document.getElementById('_fs_fgvwgnasyycxwbqeropk_ind_11').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_fgvwgnasyycxwbqeropk_ind_11').style.opacity = 0; document.getElementById('_fs_fgvwgnasyycxwbqeropk_ind_11').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div></div>"
|
|
],
|
|
"text/plain": [
|
|
"<IPython.core.display.HTML object>"
|
|
]
|
|
},
|
|
"metadata": {},
|
|
"output_type": "display_data"
|
|
}
|
|
],
|
|
"source": [
|
|
"shap.plots.text(shap_values)"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "markdown",
|
|
"metadata": {},
|
|
"source": [
|
|
"### Visualize the impact on a single class\n",
|
|
"\n",
|
|
"Since `Explanation` objects are sliceable we can slice out just a single output class to visualize the model output towards that class."
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 11,
|
|
"metadata": {},
|
|
"outputs": [
|
|
{
|
|
"data": {
|
|
"text/html": [
|
|
"\n",
|
|
"<br>\n",
|
|
"<hr style=\"height: 1px; background-color: #fff; border: none; margin-top: 18px; margin-bottom: 18px; border-top: 1px dashed #ccc;\"\">\n",
|
|
"<div align=\"center\" style=\"margin-top: -35px;\"><div style=\"display: inline-block; background: #fff; padding: 5px; color: #999; font-family: monospace\">[0]</div>\n",
|
|
"</div>\n",
|
|
" "
|
|
],
|
|
"text/plain": [
|
|
"<IPython.core.display.HTML object>"
|
|
]
|
|
},
|
|
"metadata": {},
|
|
"output_type": "display_data"
|
|
},
|
|
{
|
|
"data": {
|
|
"text/html": [
|
|
"<svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"49.790368336028344%\" y1=\"33\" x2=\"49.790368336028344%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"49.790368336028344%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.5</text><line x1=\"32.87910574196524%\" y1=\"33\" x2=\"32.87910574196524%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"32.87910574196524%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.3</text><line x1=\"15.967843147902148%\" y1=\"33\" x2=\"15.967843147902148%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"15.967843147902148%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.1</text><line x1=\"66.70163093009144%\" y1=\"33\" x2=\"66.70163093009144%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"66.70163093009144%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.7</text><line x1=\"83.61289352415453%\" y1=\"33\" x2=\"83.61289352415453%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"83.61289352415453%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.9</text><line x1=\"31.096234871770775%\" y1=\"33\" x2=\"31.096234871770775%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"31.096234871770775%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.278915</text><text x=\"31.096234871770775%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.278915</text><text x=\"31.096234871770775%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"7.616487352214607%\" y1=\"33\" x2=\"7.616487352214607%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"7.616487352214607%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.00123321</text><text x=\"7.616487352214607%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.00123321</text><text x=\"7.616487352214607%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">anger</tspan>(inputs)</text><rect x=\"3.226060185332115%\" width=\"4.390427166882492%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"5.24175936358668%\" x2=\"7.616487352214607%\" y1=\"60\" y2=\"60\" id=\"_fb_rmgzdrepfuycniksvfsw_ind_2\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"6.429123357900643%\" y=\"71\" font-size=\"12px\" id=\"_fs_rmgzdrepfuycniksvfsw_ind_2\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.028</text><svg x=\"5.24175936358668%\" y=\"40\" height=\"20\" width=\"2.374727988627927%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">didn</text> </svg></svg><line x1=\"3.931973786880691%\" x2=\"5.24175936358668%\" y1=\"60\" y2=\"60\" id=\"_fb_rmgzdrepfuycniksvfsw_ind_1\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"4.586866575233685%\" y=\"71\" font-size=\"12px\" id=\"_fs_rmgzdrepfuycniksvfsw_ind_1\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.015</text><svg x=\"3.931973786880691%\" y=\"40\" height=\"20\" width=\"1.309785576705989%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"3.226060185332115%\" x2=\"3.931973786880691%\" y1=\"60\" y2=\"60\" id=\"_fb_rmgzdrepfuycniksvfsw_ind_3\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"3.579016986106403%\" y=\"71\" font-size=\"12px\" id=\"_fs_rmgzdrepfuycniksvfsw_ind_3\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.008</text><svg x=\"3.226060185332115%\" y=\"40\" height=\"20\" width=\"0.7059136015485761%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">t</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"5.24175936358668%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"5.24175936358668%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"5.24175936358668%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"5.24175936358668%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"5.24175936358668%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"5.24175936358668%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"5.24175936358668%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"5.24175936358668%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"3.931973786880691%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"3.931973786880691%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"3.931973786880691%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"3.931973786880691%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"3.931973786880691%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"3.931973786880691%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"3.931973786880691%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"3.931973786880691%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"7.616487352214607%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"3.226060185332115%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"7.616487352214607%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"5.24175936358668%\" y=\"40\" height=\"20\" width=\"2.374727988627927%\" onmouseover=\"document.getElementById('_tp_rmgzdrepfuycniksvfsw_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_rmgzdrepfuycniksvfsw_ind_2').style.opacity = 1;document.getElementById('_fb_rmgzdrepfuycniksvfsw_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rmgzdrepfuycniksvfsw_ind_2').style.textDecoration = 'none';document.getElementById('_fs_rmgzdrepfuycniksvfsw_ind_2').style.opacity = 0;document.getElementById('_fb_rmgzdrepfuycniksvfsw_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"5.24175936358668%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"3.931973786880691%\" y=\"40\" height=\"20\" width=\"1.309785576705989%\" onmouseover=\"document.getElementById('_tp_rmgzdrepfuycniksvfsw_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_rmgzdrepfuycniksvfsw_ind_1').style.opacity = 1;document.getElementById('_fb_rmgzdrepfuycniksvfsw_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rmgzdrepfuycniksvfsw_ind_1').style.textDecoration = 'none';document.getElementById('_fs_rmgzdrepfuycniksvfsw_ind_1').style.opacity = 0;document.getElementById('_fb_rmgzdrepfuycniksvfsw_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"3.226060185332115%\" y=\"40\" height=\"20\" width=\"0.7059136015485761%\" onmouseover=\"document.getElementById('_tp_rmgzdrepfuycniksvfsw_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_rmgzdrepfuycniksvfsw_ind_3').style.opacity = 1;document.getElementById('_fb_rmgzdrepfuycniksvfsw_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rmgzdrepfuycniksvfsw_ind_3').style.textDecoration = 'none';document.getElementById('_fs_rmgzdrepfuycniksvfsw_ind_3').style.opacity = 0;document.getElementById('_fb_rmgzdrepfuycniksvfsw_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"7.616487352214607%\" width=\"27.870174686438663%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"7.616487352214607%\" x2=\"24.471464321025536%\" y1=\"60\" y2=\"60\" id=\"_fb_rmgzdrepfuycniksvfsw_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"16.04397583662007%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rmgzdrepfuycniksvfsw_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.199</text><svg x=\"7.616487352214607%\" y=\"40\" height=\"20\" width=\"16.85497696881093%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">humiliated</text> </svg></svg><line x1=\"24.471464321025536%\" x2=\"35.48666031970582%\" y1=\"60\" y2=\"60\" id=\"_fb_rmgzdrepfuycniksvfsw_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"29.979062320365678%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rmgzdrepfuycniksvfsw_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.13</text><svg x=\"24.471464321025536%\" y=\"40\" height=\"20\" width=\"11.015195998680284%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"35.48666031970582%\" x2=\"35.48666156984942%\" y1=\"60\" y2=\"60\" id=\"_fb_rmgzdrepfuycniksvfsw_ind_6\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"35.48666094477762%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rmgzdrepfuycniksvfsw_ind_6\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"35.48666031970582%\" y=\"40\" height=\"20\" width=\"1.2501435975309505e-06%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><line x1=\"35.48666156984942%\" x2=\"35.48666203865327%\" y1=\"60\" y2=\"60\" id=\"_fb_rmgzdrepfuycniksvfsw_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"35.48666180425134%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rmgzdrepfuycniksvfsw_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"35.48666156984942%\" y=\"40\" height=\"20\" width=\"4.6880385440317696e-07%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"24.471464321025536%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"24.471464321025536%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"24.471464321025536%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"24.471464321025536%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"24.471464321025536%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"24.471464321025536%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"24.471464321025536%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"24.471464321025536%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"35.48666031970582%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"35.48666031970582%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"35.48666031970582%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"35.48666031970582%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"35.48666031970582%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"35.48666031970582%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"35.48666031970582%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"35.48666031970582%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"35.48666156984942%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"35.48666156984942%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"35.48666156984942%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"35.48666156984942%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"35.48666156984942%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"35.48666156984942%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"35.48666156984942%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"35.48666156984942%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"7.616487352214607%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"35.48666203865327%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"24.471464321025536%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"7.616487352214607%\" y=\"40\" height=\"20\" width=\"16.85497696881093%\" onmouseover=\"document.getElementById('_tp_rmgzdrepfuycniksvfsw_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_rmgzdrepfuycniksvfsw_ind_5').style.opacity = 1;document.getElementById('_fb_rmgzdrepfuycniksvfsw_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rmgzdrepfuycniksvfsw_ind_5').style.textDecoration = 'none';document.getElementById('_fs_rmgzdrepfuycniksvfsw_ind_5').style.opacity = 0;document.getElementById('_fb_rmgzdrepfuycniksvfsw_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"35.48666031970582%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"24.471464321025536%\" y=\"40\" height=\"20\" width=\"11.015195998680284%\" onmouseover=\"document.getElementById('_tp_rmgzdrepfuycniksvfsw_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_rmgzdrepfuycniksvfsw_ind_4').style.opacity = 1;document.getElementById('_fb_rmgzdrepfuycniksvfsw_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rmgzdrepfuycniksvfsw_ind_4').style.textDecoration = 'none';document.getElementById('_fs_rmgzdrepfuycniksvfsw_ind_4').style.opacity = 0;document.getElementById('_fb_rmgzdrepfuycniksvfsw_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"35.48666156984942%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"35.48666031970582%\" y=\"40\" height=\"20\" width=\"1.2501435975309505e-06%\" onmouseover=\"document.getElementById('_tp_rmgzdrepfuycniksvfsw_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_rmgzdrepfuycniksvfsw_ind_6').style.opacity = 1;document.getElementById('_fb_rmgzdrepfuycniksvfsw_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rmgzdrepfuycniksvfsw_ind_6').style.textDecoration = 'none';document.getElementById('_fs_rmgzdrepfuycniksvfsw_ind_6').style.opacity = 0;document.getElementById('_fb_rmgzdrepfuycniksvfsw_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"35.48666156984942%\" y=\"40\" height=\"20\" width=\"4.6880385440317696e-07%\" onmouseover=\"document.getElementById('_tp_rmgzdrepfuycniksvfsw_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_rmgzdrepfuycniksvfsw_ind_0').style.opacity = 1;document.getElementById('_fb_rmgzdrepfuycniksvfsw_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rmgzdrepfuycniksvfsw_ind_0').style.textDecoration = 'none';document.getElementById('_fs_rmgzdrepfuycniksvfsw_ind_0').style.opacity = 0;document.getElementById('_fb_rmgzdrepfuycniksvfsw_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_rmgzdrepfuycniksvfsw_ind_0'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_rmgzdrepfuycniksvfsw_ind_0').style.opacity = 1; document.getElementById('_fs_rmgzdrepfuycniksvfsw_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_rmgzdrepfuycniksvfsw_ind_0').style.opacity = 0; document.getElementById('_fs_rmgzdrepfuycniksvfsw_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.015</div\n",
|
|
" ><div id='_tp_rmgzdrepfuycniksvfsw_ind_1'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.02253911665676371); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_rmgzdrepfuycniksvfsw_ind_1').style.opacity = 1; document.getElementById('_fs_rmgzdrepfuycniksvfsw_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_rmgzdrepfuycniksvfsw_ind_1').style.opacity = 0; document.getElementById('_fs_rmgzdrepfuycniksvfsw_ind_1').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.028</div\n",
|
|
" ><div id='_tp_rmgzdrepfuycniksvfsw_ind_2'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.04618736383442265); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_rmgzdrepfuycniksvfsw_ind_2').style.opacity = 1; document.getElementById('_fs_rmgzdrepfuycniksvfsw_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_rmgzdrepfuycniksvfsw_ind_2').style.opacity = 0; document.getElementById('_fs_rmgzdrepfuycniksvfsw_ind_2').style.opacity = 0;\"\n",
|
|
" >didn</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.008</div\n",
|
|
" ><div id='_tp_rmgzdrepfuycniksvfsw_ind_3'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_rmgzdrepfuycniksvfsw_ind_3').style.opacity = 1; document.getElementById('_fs_rmgzdrepfuycniksvfsw_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_rmgzdrepfuycniksvfsw_ind_3').style.opacity = 0; document.getElementById('_fs_rmgzdrepfuycniksvfsw_ind_3').style.opacity = 0;\"\n",
|
|
" >t </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.13</div\n",
|
|
" ><div id='_tp_rmgzdrepfuycniksvfsw_ind_4'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.23537334125569417); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_rmgzdrepfuycniksvfsw_ind_4').style.opacity = 1; document.getElementById('_fs_rmgzdrepfuycniksvfsw_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_rmgzdrepfuycniksvfsw_ind_4').style.opacity = 0; document.getElementById('_fs_rmgzdrepfuycniksvfsw_ind_4').style.opacity = 0;\"\n",
|
|
" >feel </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.199</div\n",
|
|
" ><div id='_tp_rmgzdrepfuycniksvfsw_ind_5'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.36149732620320846); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_rmgzdrepfuycniksvfsw_ind_5').style.opacity = 1; document.getElementById('_fs_rmgzdrepfuycniksvfsw_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_rmgzdrepfuycniksvfsw_ind_5').style.opacity = 0; document.getElementById('_fs_rmgzdrepfuycniksvfsw_ind_5').style.opacity = 0;\"\n",
|
|
" >humiliated</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_rmgzdrepfuycniksvfsw_ind_6'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_rmgzdrepfuycniksvfsw_ind_6').style.opacity = 1; document.getElementById('_fs_rmgzdrepfuycniksvfsw_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_rmgzdrepfuycniksvfsw_ind_6').style.opacity = 0; document.getElementById('_fs_rmgzdrepfuycniksvfsw_ind_6').style.opacity = 0;\"\n",
|
|
" ></div></div></div>"
|
|
],
|
|
"text/plain": [
|
|
"<IPython.core.display.HTML object>"
|
|
]
|
|
},
|
|
"metadata": {},
|
|
"output_type": "display_data"
|
|
},
|
|
{
|
|
"data": {
|
|
"text/html": [
|
|
"\n",
|
|
"<br>\n",
|
|
"<hr style=\"height: 1px; background-color: #fff; border: none; margin-top: 18px; margin-bottom: 18px; border-top: 1px dashed #ccc;\"\">\n",
|
|
"<div align=\"center\" style=\"margin-top: -35px;\"><div style=\"display: inline-block; background: #fff; padding: 5px; color: #999; font-family: monospace\">[1]</div>\n",
|
|
"</div>\n",
|
|
" "
|
|
],
|
|
"text/plain": [
|
|
"<IPython.core.display.HTML object>"
|
|
]
|
|
},
|
|
"metadata": {},
|
|
"output_type": "display_data"
|
|
},
|
|
{
|
|
"data": {
|
|
"text/html": [
|
|
"<svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"49.790368336028344%\" y1=\"33\" x2=\"49.790368336028344%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"49.790368336028344%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.5</text><line x1=\"32.87910574196524%\" y1=\"33\" x2=\"32.87910574196524%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"32.87910574196524%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.3</text><line x1=\"15.967843147902148%\" y1=\"33\" x2=\"15.967843147902148%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"15.967843147902148%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.1</text><line x1=\"66.70163093009144%\" y1=\"33\" x2=\"66.70163093009144%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"66.70163093009144%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.7</text><line x1=\"83.61289352415453%\" y1=\"33\" x2=\"83.61289352415453%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"83.61289352415453%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.9</text><line x1=\"30.480199385756997%\" y1=\"33\" x2=\"30.480199385756997%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"30.480199385756997%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.271629</text><text x=\"30.480199385756997%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.271629</text><text x=\"30.480199385756997%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"7.551346186138798%\" y1=\"33\" x2=\"7.551346186138798%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"7.551346186138798%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.00046282</text><text x=\"7.551346186138798%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.00046282</text><text x=\"7.551346186138798%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">anger</tspan>(inputs)</text><rect x=\"4.423015549039837%\" width=\"3.1283306370989608%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"6.310690195087893%\" x2=\"7.551346186138798%\" y1=\"60\" y2=\"60\" id=\"_fb_vjgkkjksjlibxuutchsm_ind_9\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"6.9310181906133455%\" y=\"71\" font-size=\"12px\" id=\"_fs_vjgkkjksjlibxuutchsm_ind_9\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.015</text><svg x=\"6.310690195087893%\" y=\"40\" height=\"20\" width=\"1.2406559910509056%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">damned</text> </svg></svg><line x1=\"5.891125364986051%\" x2=\"6.310690195087893%\" y1=\"60\" y2=\"60\" id=\"_fb_vjgkkjksjlibxuutchsm_ind_3\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"6.100907780036971%\" y=\"71\" font-size=\"12px\" id=\"_fs_vjgkkjksjlibxuutchsm_ind_3\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.005</text><svg x=\"5.891125364986051%\" y=\"40\" height=\"20\" width=\"0.41956483010184176%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><line x1=\"5.483363394154603%\" x2=\"5.891125364986051%\" y1=\"60\" y2=\"60\" id=\"_fb_vjgkkjksjlibxuutchsm_ind_7\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"5.687244379570327%\" y=\"71\" font-size=\"12px\" id=\"_fs_vjgkkjksjlibxuutchsm_ind_7\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.005</text><svg x=\"5.483363394154603%\" y=\"40\" height=\"20\" width=\"0.40776197083144794%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><line x1=\"5.154489893153879%\" x2=\"5.483363394154603%\" y1=\"60\" y2=\"60\" id=\"_fb_vjgkkjksjlibxuutchsm_ind_8\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"5.31892664365424%\" y=\"71\" font-size=\"12px\" id=\"_fs_vjgkkjksjlibxuutchsm_ind_8\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.004</text><svg x=\"5.154489893153879%\" y=\"40\" height=\"20\" width=\"0.3288735010007242%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><line x1=\"4.83127182062115%\" x2=\"5.154489893153879%\" y1=\"60\" y2=\"60\" id=\"_fb_vjgkkjksjlibxuutchsm_ind_14\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"4.992880856887514%\" y=\"71\" font-size=\"12px\" id=\"_fs_vjgkkjksjlibxuutchsm_ind_14\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.004</text><svg x=\"4.83127182062115%\" y=\"40\" height=\"20\" width=\"0.32321807253272894%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">around</text> </svg></svg><line x1=\"4.64780532653857%\" x2=\"4.83127182062115%\" y1=\"60\" y2=\"60\" id=\"_fb_vjgkkjksjlibxuutchsm_ind_1\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"4.7395385735798605%\" y=\"71\" font-size=\"12px\" id=\"_fs_vjgkkjksjlibxuutchsm_ind_1\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.002</text><svg x=\"4.64780532653857%\" y=\"40\" height=\"20\" width=\"0.18346649408257942%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"4.468239483126083%\" x2=\"4.64780532653857%\" y1=\"60\" y2=\"60\" id=\"_fb_vjgkkjksjlibxuutchsm_ind_13\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"4.558022404832327%\" y=\"71\" font-size=\"12px\" id=\"_fs_vjgkkjksjlibxuutchsm_ind_13\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.002</text><svg x=\"4.468239483126083%\" y=\"40\" height=\"20\" width=\"0.1795658434124876%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">being</text> </svg></svg><line x1=\"4.423015558883487%\" x2=\"4.468239483126083%\" y1=\"60\" y2=\"60\" id=\"_fb_vjgkkjksjlibxuutchsm_ind_19\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"4.445627521004785%\" y=\"71\" font-size=\"12px\" id=\"_fs_vjgkkjksjlibxuutchsm_ind_19\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.001</text><svg x=\"4.423015558883487%\" y=\"40\" height=\"20\" width=\"0.04522392424259536%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">is</text> </svg></svg><line x1=\"4.423015549039837%\" x2=\"4.423015558883487%\" y1=\"60\" y2=\"60\" id=\"_fb_vjgkkjksjlibxuutchsm_ind_21\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"4.423015553961662%\" y=\"71\" font-size=\"12px\" id=\"_fs_vjgkkjksjlibxuutchsm_ind_21\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"4.423015549039837%\" y=\"40\" height=\"20\" width=\"9.843650339291798e-09%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"6.310690195087893%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"6.310690195087893%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"6.310690195087893%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"6.310690195087893%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"6.310690195087893%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"6.310690195087893%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"6.310690195087893%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"6.310690195087893%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"5.891125364986051%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"5.891125364986051%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"5.891125364986051%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"5.891125364986051%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"5.891125364986051%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"5.891125364986051%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"5.891125364986051%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"5.891125364986051%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"5.483363394154603%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"5.483363394154603%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"5.483363394154603%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"5.483363394154603%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"5.483363394154603%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"5.483363394154603%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"5.483363394154603%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"5.483363394154603%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"5.154489893153879%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"5.154489893153879%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"5.154489893153879%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"5.154489893153879%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"5.154489893153879%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"5.154489893153879%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"5.154489893153879%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"5.154489893153879%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"4.83127182062115%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"4.83127182062115%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"4.83127182062115%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"4.83127182062115%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"4.83127182062115%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"4.83127182062115%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"4.83127182062115%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"4.83127182062115%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"4.64780532653857%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"4.64780532653857%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"4.64780532653857%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"4.64780532653857%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"4.64780532653857%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"4.64780532653857%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"4.64780532653857%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"4.64780532653857%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"4.468239483126083%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"4.468239483126083%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"4.468239483126083%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"4.468239483126083%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"4.468239483126083%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"4.468239483126083%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"4.468239483126083%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"4.468239483126083%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"4.423015558883487%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"4.423015558883487%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"4.423015558883487%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"4.423015558883487%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"4.423015558883487%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"4.423015558883487%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"4.423015558883487%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"4.423015558883487%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"7.551346186138798%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"4.423015549039837%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"7.551346186138798%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"6.310690195087893%\" y=\"40\" height=\"20\" width=\"1.2406559910509056%\" onmouseover=\"document.getElementById('_tp_vjgkkjksjlibxuutchsm_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_9').style.opacity = 1;document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vjgkkjksjlibxuutchsm_ind_9').style.textDecoration = 'none';document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_9').style.opacity = 0;document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"6.310690195087893%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"5.891125364986051%\" y=\"40\" height=\"20\" width=\"0.41956483010184176%\" onmouseover=\"document.getElementById('_tp_vjgkkjksjlibxuutchsm_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_3').style.opacity = 1;document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vjgkkjksjlibxuutchsm_ind_3').style.textDecoration = 'none';document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_3').style.opacity = 0;document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"5.891125364986051%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"5.483363394154603%\" y=\"40\" height=\"20\" width=\"0.40776197083144794%\" onmouseover=\"document.getElementById('_tp_vjgkkjksjlibxuutchsm_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_7').style.opacity = 1;document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vjgkkjksjlibxuutchsm_ind_7').style.textDecoration = 'none';document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_7').style.opacity = 0;document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"5.483363394154603%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"5.154489893153879%\" y=\"40\" height=\"20\" width=\"0.3288735010007242%\" onmouseover=\"document.getElementById('_tp_vjgkkjksjlibxuutchsm_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_8').style.opacity = 1;document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vjgkkjksjlibxuutchsm_ind_8').style.textDecoration = 'none';document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_8').style.opacity = 0;document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"5.154489893153879%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"4.83127182062115%\" y=\"40\" height=\"20\" width=\"0.32321807253272894%\" onmouseover=\"document.getElementById('_tp_vjgkkjksjlibxuutchsm_ind_14').style.textDecoration = 'underline';document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_14').style.opacity = 1;document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_14').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vjgkkjksjlibxuutchsm_ind_14').style.textDecoration = 'none';document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_14').style.opacity = 0;document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_14').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"4.83127182062115%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"4.64780532653857%\" y=\"40\" height=\"20\" width=\"0.18346649408257942%\" onmouseover=\"document.getElementById('_tp_vjgkkjksjlibxuutchsm_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_1').style.opacity = 1;document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vjgkkjksjlibxuutchsm_ind_1').style.textDecoration = 'none';document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_1').style.opacity = 0;document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"4.64780532653857%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"4.468239483126083%\" y=\"40\" height=\"20\" width=\"0.1795658434124876%\" onmouseover=\"document.getElementById('_tp_vjgkkjksjlibxuutchsm_ind_13').style.textDecoration = 'underline';document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_13').style.opacity = 1;document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_13').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vjgkkjksjlibxuutchsm_ind_13').style.textDecoration = 'none';document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_13').style.opacity = 0;document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_13').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"4.468239483126083%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"4.423015558883487%\" y=\"40\" height=\"20\" width=\"0.04522392424259536%\" onmouseover=\"document.getElementById('_tp_vjgkkjksjlibxuutchsm_ind_19').style.textDecoration = 'underline';document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_19').style.opacity = 1;document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_19').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vjgkkjksjlibxuutchsm_ind_19').style.textDecoration = 'none';document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_19').style.opacity = 0;document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_19').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"4.423015549039837%\" y=\"40\" height=\"20\" width=\"9.843650339291798e-09%\" onmouseover=\"document.getElementById('_tp_vjgkkjksjlibxuutchsm_ind_21').style.textDecoration = 'underline';document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_21').style.opacity = 1;document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_21').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vjgkkjksjlibxuutchsm_ind_21').style.textDecoration = 'none';document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_21').style.opacity = 0;document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_21').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"7.551346186138798%\" width=\"26.05718383671716%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"7.551346186138798%\" x2=\"15.758004271472153%\" y1=\"60\" y2=\"60\" id=\"_fb_vjgkkjksjlibxuutchsm_ind_10\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"11.654675228805475%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_vjgkkjksjlibxuutchsm_ind_10\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.097</text><svg x=\"7.551346186138798%\" y=\"40\" height=\"20\" width=\"8.206658085333356%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeful</text> </svg></svg><line x1=\"15.758004271472153%\" x2=\"22.520057386515838%\" y1=\"60\" y2=\"60\" id=\"_fb_vjgkkjksjlibxuutchsm_ind_6\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"19.139030828993995%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_vjgkkjksjlibxuutchsm_ind_6\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.08</text><svg x=\"15.758004271472153%\" y=\"40\" height=\"20\" width=\"6.762053115043685%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeless</text> </svg></svg><line x1=\"22.520057386515838%\" x2=\"26.321723942469532%\" y1=\"60\" y2=\"60\" id=\"_fb_vjgkkjksjlibxuutchsm_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"24.420890664492685%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_vjgkkjksjlibxuutchsm_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.045</text><svg x=\"22.520057386515838%\" y=\"40\" height=\"20\" width=\"3.8016665559536946%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feeling</text> </svg></svg><line x1=\"26.321723942469532%\" x2=\"28.64719546565054%\" y1=\"60\" y2=\"60\" id=\"_fb_vjgkkjksjlibxuutchsm_ind_20\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"27.484459704060036%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_vjgkkjksjlibxuutchsm_ind_20\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.028</text><svg x=\"26.321723942469532%\" y=\"40\" height=\"20\" width=\"2.325471523181008%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">awake</text> </svg></svg><line x1=\"28.64719546565054%\" x2=\"30.444913406074082%\" y1=\"60\" y2=\"60\" id=\"_fb_vjgkkjksjlibxuutchsm_ind_17\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"29.54605443586231%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_vjgkkjksjlibxuutchsm_ind_17\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.021</text><svg x=\"28.64719546565054%\" y=\"40\" height=\"20\" width=\"1.7977179404235422%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">cares</text> </svg></svg><line x1=\"30.444913406074082%\" x2=\"31.7898267079414%\" y1=\"60\" y2=\"60\" id=\"_fb_vjgkkjksjlibxuutchsm_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"31.11737005700774%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_vjgkkjksjlibxuutchsm_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.016</text><svg x=\"30.444913406074082%\" y=\"40\" height=\"20\" width=\"1.3449133018673187%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><line x1=\"31.7898267079414%\" x2=\"32.43758901411921%\" y1=\"60\" y2=\"60\" id=\"_fb_vjgkkjksjlibxuutchsm_ind_15\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"32.113707861030306%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_vjgkkjksjlibxuutchsm_ind_15\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.008</text><svg x=\"31.7898267079414%\" y=\"40\" height=\"20\" width=\"0.6477623061778104%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">someone</text> </svg></svg><line x1=\"32.43758901411921%\" x2=\"32.78767984200491%\" y1=\"60\" y2=\"60\" id=\"_fb_vjgkkjksjlibxuutchsm_ind_11\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"32.612634428062066%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_vjgkkjksjlibxuutchsm_ind_11\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.004</text><svg x=\"32.43758901411921%\" y=\"40\" height=\"20\" width=\"0.3500908278857011%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">just</text> </svg></svg><line x1=\"32.78767984200491%\" x2=\"33.09093808815001%\" y1=\"60\" y2=\"60\" id=\"_fb_vjgkkjksjlibxuutchsm_ind_16\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"32.93930896507746%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_vjgkkjksjlibxuutchsm_ind_16\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.004</text><svg x=\"32.78767984200491%\" y=\"40\" height=\"20\" width=\"0.30325824614509855%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">who</text> </svg></svg><line x1=\"33.09093808815001%\" x2=\"33.34744425146646%\" y1=\"60\" y2=\"60\" id=\"_fb_vjgkkjksjlibxuutchsm_ind_18\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"33.21919116980824%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_vjgkkjksjlibxuutchsm_ind_18\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.003</text><svg x=\"33.09093808815001%\" y=\"40\" height=\"20\" width=\"0.2565061633164518%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">and</text> </svg></svg><line x1=\"33.34744425146646%\" x2=\"33.55946941952003%\" y1=\"60\" y2=\"60\" id=\"_fb_vjgkkjksjlibxuutchsm_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"33.45345683549324%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_vjgkkjksjlibxuutchsm_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.003</text><svg x=\"33.34744425146646%\" y=\"40\" height=\"20\" width=\"0.21202516805356453%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">can go</text> </svg></svg><line x1=\"33.55946941952003%\" x2=\"33.60467011759263%\" y1=\"60\" y2=\"60\" id=\"_fb_vjgkkjksjlibxuutchsm_ind_12\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"33.58206976855633%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_vjgkkjksjlibxuutchsm_ind_12\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.001</text><svg x=\"33.55946941952003%\" y=\"40\" height=\"20\" width=\"0.045200698072605405%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><line x1=\"33.60467011759263%\" x2=\"33.60853002285596%\" y1=\"60\" y2=\"60\" id=\"_fb_vjgkkjksjlibxuutchsm_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"33.606600070224296%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_vjgkkjksjlibxuutchsm_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"33.60467011759263%\" y=\"40\" height=\"20\" width=\"0.0038599052633259134%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"15.758004271472153%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"15.758004271472153%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"15.758004271472153%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"15.758004271472153%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"15.758004271472153%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"15.758004271472153%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"15.758004271472153%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"15.758004271472153%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"22.520057386515838%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"22.520057386515838%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"22.520057386515838%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"22.520057386515838%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"22.520057386515838%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"22.520057386515838%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"22.520057386515838%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"22.520057386515838%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"26.321723942469532%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"26.321723942469532%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"26.321723942469532%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"26.321723942469532%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"26.321723942469532%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"26.321723942469532%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"26.321723942469532%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"26.321723942469532%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"28.64719546565054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"28.64719546565054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"28.64719546565054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"28.64719546565054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"28.64719546565054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"28.64719546565054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"28.64719546565054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"28.64719546565054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"30.444913406074082%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"30.444913406074082%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"30.444913406074082%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"30.444913406074082%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"30.444913406074082%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"30.444913406074082%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"30.444913406074082%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"30.444913406074082%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"31.7898267079414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"31.7898267079414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"31.7898267079414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"31.7898267079414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"31.7898267079414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"31.7898267079414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"31.7898267079414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"31.7898267079414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"32.43758901411921%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"32.43758901411921%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"32.43758901411921%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"32.43758901411921%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"32.43758901411921%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"32.43758901411921%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"32.43758901411921%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"32.43758901411921%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"32.78767984200491%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"32.78767984200491%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"32.78767984200491%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"32.78767984200491%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"32.78767984200491%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"32.78767984200491%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"32.78767984200491%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"32.78767984200491%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"33.09093808815001%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"33.09093808815001%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"33.09093808815001%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"33.09093808815001%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"33.09093808815001%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"33.09093808815001%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"33.09093808815001%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"33.09093808815001%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"33.34744425146646%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"33.34744425146646%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"33.34744425146646%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"33.34744425146646%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"33.34744425146646%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"33.34744425146646%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"33.34744425146646%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"33.34744425146646%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"33.55946941952003%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"33.55946941952003%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"33.55946941952003%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"33.55946941952003%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"33.55946941952003%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"33.55946941952003%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"33.55946941952003%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"33.55946941952003%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"33.60467011759263%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"33.60467011759263%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"33.60467011759263%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"33.60467011759263%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"33.60467011759263%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"33.60467011759263%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"33.60467011759263%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"33.60467011759263%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"7.551346186138798%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"33.60853002285596%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"15.758004271472153%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"7.551346186138798%\" y=\"40\" height=\"20\" width=\"8.206658085333356%\" onmouseover=\"document.getElementById('_tp_vjgkkjksjlibxuutchsm_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_10').style.opacity = 1;document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vjgkkjksjlibxuutchsm_ind_10').style.textDecoration = 'none';document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_10').style.opacity = 0;document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"22.520057386515838%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"15.758004271472153%\" y=\"40\" height=\"20\" width=\"6.762053115043685%\" onmouseover=\"document.getElementById('_tp_vjgkkjksjlibxuutchsm_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_6').style.opacity = 1;document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vjgkkjksjlibxuutchsm_ind_6').style.textDecoration = 'none';document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_6').style.opacity = 0;document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"26.321723942469532%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"22.520057386515838%\" y=\"40\" height=\"20\" width=\"3.8016665559536946%\" onmouseover=\"document.getElementById('_tp_vjgkkjksjlibxuutchsm_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_4').style.opacity = 1;document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vjgkkjksjlibxuutchsm_ind_4').style.textDecoration = 'none';document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_4').style.opacity = 0;document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"28.64719546565054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"26.321723942469532%\" y=\"40\" height=\"20\" width=\"2.325471523181008%\" onmouseover=\"document.getElementById('_tp_vjgkkjksjlibxuutchsm_ind_20').style.textDecoration = 'underline';document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_20').style.opacity = 1;document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_20').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vjgkkjksjlibxuutchsm_ind_20').style.textDecoration = 'none';document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_20').style.opacity = 0;document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_20').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"30.444913406074082%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"28.64719546565054%\" y=\"40\" height=\"20\" width=\"1.7977179404235422%\" onmouseover=\"document.getElementById('_tp_vjgkkjksjlibxuutchsm_ind_17').style.textDecoration = 'underline';document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_17').style.opacity = 1;document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_17').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vjgkkjksjlibxuutchsm_ind_17').style.textDecoration = 'none';document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_17').style.opacity = 0;document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_17').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"31.7898267079414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"30.444913406074082%\" y=\"40\" height=\"20\" width=\"1.3449133018673187%\" onmouseover=\"document.getElementById('_tp_vjgkkjksjlibxuutchsm_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_5').style.opacity = 1;document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vjgkkjksjlibxuutchsm_ind_5').style.textDecoration = 'none';document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_5').style.opacity = 0;document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"32.43758901411921%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"31.7898267079414%\" y=\"40\" height=\"20\" width=\"0.6477623061778104%\" onmouseover=\"document.getElementById('_tp_vjgkkjksjlibxuutchsm_ind_15').style.textDecoration = 'underline';document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_15').style.opacity = 1;document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_15').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vjgkkjksjlibxuutchsm_ind_15').style.textDecoration = 'none';document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_15').style.opacity = 0;document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_15').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"32.78767984200491%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"32.43758901411921%\" y=\"40\" height=\"20\" width=\"0.3500908278857011%\" onmouseover=\"document.getElementById('_tp_vjgkkjksjlibxuutchsm_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_11').style.opacity = 1;document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vjgkkjksjlibxuutchsm_ind_11').style.textDecoration = 'none';document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_11').style.opacity = 0;document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"33.09093808815001%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"32.78767984200491%\" y=\"40\" height=\"20\" width=\"0.30325824614509855%\" onmouseover=\"document.getElementById('_tp_vjgkkjksjlibxuutchsm_ind_16').style.textDecoration = 'underline';document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_16').style.opacity = 1;document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_16').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vjgkkjksjlibxuutchsm_ind_16').style.textDecoration = 'none';document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_16').style.opacity = 0;document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_16').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"33.34744425146646%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"33.09093808815001%\" y=\"40\" height=\"20\" width=\"0.2565061633164518%\" onmouseover=\"document.getElementById('_tp_vjgkkjksjlibxuutchsm_ind_18').style.textDecoration = 'underline';document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_18').style.opacity = 1;document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_18').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vjgkkjksjlibxuutchsm_ind_18').style.textDecoration = 'none';document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_18').style.opacity = 0;document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_18').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"33.55946941952003%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"33.34744425146646%\" y=\"40\" height=\"20\" width=\"0.21202516805356453%\" onmouseover=\"document.getElementById('_tp_vjgkkjksjlibxuutchsm_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_2').style.opacity = 1;document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vjgkkjksjlibxuutchsm_ind_2').style.textDecoration = 'none';document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_2').style.opacity = 0;document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"33.60467011759263%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"33.55946941952003%\" y=\"40\" height=\"20\" width=\"0.045200698072605405%\" onmouseover=\"document.getElementById('_tp_vjgkkjksjlibxuutchsm_ind_12').style.textDecoration = 'underline';document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_12').style.opacity = 1;document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_12').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vjgkkjksjlibxuutchsm_ind_12').style.textDecoration = 'none';document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_12').style.opacity = 0;document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_12').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"33.60467011759263%\" y=\"40\" height=\"20\" width=\"0.0038599052633259134%\" onmouseover=\"document.getElementById('_tp_vjgkkjksjlibxuutchsm_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_0').style.opacity = 1;document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_vjgkkjksjlibxuutchsm_ind_0').style.textDecoration = 'none';document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_0').style.opacity = 0;document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_vjgkkjksjlibxuutchsm_ind_0'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_0').style.opacity = 1; document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_0').style.opacity = 0; document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.002</div\n",
|
|
" ><div id='_tp_vjgkkjksjlibxuutchsm_ind_1'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_1').style.opacity = 1; document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_1').style.opacity = 0; document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_1').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.003 / 2</div\n",
|
|
" ><div id='_tp_vjgkkjksjlibxuutchsm_ind_2'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_2').style.opacity = 1; document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_2').style.opacity = 0; document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_2').style.opacity = 0;\"\n",
|
|
" >can go </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.005</div\n",
|
|
" ><div id='_tp_vjgkkjksjlibxuutchsm_ind_3'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_3').style.opacity = 1; document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_3').style.opacity = 0; document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_3').style.opacity = 0;\"\n",
|
|
" >from </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.045</div\n",
|
|
" ><div id='_tp_vjgkkjksjlibxuutchsm_ind_4'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.07771836007130117); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_4').style.opacity = 1; document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_4').style.opacity = 0; document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_4').style.opacity = 0;\"\n",
|
|
" >feeling </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.016</div\n",
|
|
" ><div id='_tp_vjgkkjksjlibxuutchsm_ind_5'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.022539116656763607); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_5').style.opacity = 1; document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_5').style.opacity = 0; document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_5').style.opacity = 0;\"\n",
|
|
" >so </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.08</div\n",
|
|
" ><div id='_tp_vjgkkjksjlibxuutchsm_ind_6'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.14078035254505836); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_6').style.opacity = 1; document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_6').style.opacity = 0; document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_6').style.opacity = 0;\"\n",
|
|
" >hopeless </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.005</div\n",
|
|
" ><div id='_tp_vjgkkjksjlibxuutchsm_ind_7'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_7').style.opacity = 1; document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_7').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_7').style.opacity = 0; document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_7').style.opacity = 0;\"\n",
|
|
" >to </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.004</div\n",
|
|
" ><div id='_tp_vjgkkjksjlibxuutchsm_ind_8'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_8').style.opacity = 1; document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_8').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_8').style.opacity = 0; document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_8').style.opacity = 0;\"\n",
|
|
" >so </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.015</div\n",
|
|
" ><div id='_tp_vjgkkjksjlibxuutchsm_ind_9'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.02253911665676371); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_9').style.opacity = 1; document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_9').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_9').style.opacity = 0; document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_9').style.opacity = 0;\"\n",
|
|
" >damned </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.097</div\n",
|
|
" ><div id='_tp_vjgkkjksjlibxuutchsm_ind_10'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.1723113487819369); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_10').style.opacity = 1; document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_10').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_10').style.opacity = 0; document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_10').style.opacity = 0;\"\n",
|
|
" >hopeful </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.004</div\n",
|
|
" ><div id='_tp_vjgkkjksjlibxuutchsm_ind_11'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_11').style.opacity = 1; document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_11').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_11').style.opacity = 0; document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_11').style.opacity = 0;\"\n",
|
|
" >just </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.001</div\n",
|
|
" ><div id='_tp_vjgkkjksjlibxuutchsm_ind_12'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_12').style.opacity = 1; document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_12').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_12').style.opacity = 0; document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_12').style.opacity = 0;\"\n",
|
|
" >from </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.002</div\n",
|
|
" ><div id='_tp_vjgkkjksjlibxuutchsm_ind_13'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_13').style.opacity = 1; document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_13').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_13').style.opacity = 0; document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_13').style.opacity = 0;\"\n",
|
|
" >being </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.004</div\n",
|
|
" ><div id='_tp_vjgkkjksjlibxuutchsm_ind_14'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_14').style.opacity = 1; document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_14').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_14').style.opacity = 0; document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_14').style.opacity = 0;\"\n",
|
|
" >around </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.008</div\n",
|
|
" ><div id='_tp_vjgkkjksjlibxuutchsm_ind_15'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_15').style.opacity = 1; document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_15').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_15').style.opacity = 0; document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_15').style.opacity = 0;\"\n",
|
|
" >someone </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.004</div\n",
|
|
" ><div id='_tp_vjgkkjksjlibxuutchsm_ind_16'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_16').style.opacity = 1; document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_16').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_16').style.opacity = 0; document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_16').style.opacity = 0;\"\n",
|
|
" >who </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.021</div\n",
|
|
" ><div id='_tp_vjgkkjksjlibxuutchsm_ind_17'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03042186571598325); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_17').style.opacity = 1; document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_17').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_17').style.opacity = 0; document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_17').style.opacity = 0;\"\n",
|
|
" >cares </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.003</div\n",
|
|
" ><div id='_tp_vjgkkjksjlibxuutchsm_ind_18'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_18').style.opacity = 1; document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_18').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_18').style.opacity = 0; document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_18').style.opacity = 0;\"\n",
|
|
" >and </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.001</div\n",
|
|
" ><div id='_tp_vjgkkjksjlibxuutchsm_ind_19'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_19').style.opacity = 1; document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_19').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_19').style.opacity = 0; document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_19').style.opacity = 0;\"\n",
|
|
" >is </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.028</div\n",
|
|
" ><div id='_tp_vjgkkjksjlibxuutchsm_ind_20'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.04618736383442258); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_20').style.opacity = 1; document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_20').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_20').style.opacity = 0; document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_20').style.opacity = 0;\"\n",
|
|
" >awake</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_vjgkkjksjlibxuutchsm_ind_21'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_21').style.opacity = 1; document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_21').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_vjgkkjksjlibxuutchsm_ind_21').style.opacity = 0; document.getElementById('_fs_vjgkkjksjlibxuutchsm_ind_21').style.opacity = 0;\"\n",
|
|
" ></div></div></div>"
|
|
],
|
|
"text/plain": [
|
|
"<IPython.core.display.HTML object>"
|
|
]
|
|
},
|
|
"metadata": {},
|
|
"output_type": "display_data"
|
|
},
|
|
{
|
|
"data": {
|
|
"text/html": [
|
|
"\n",
|
|
"<br>\n",
|
|
"<hr style=\"height: 1px; background-color: #fff; border: none; margin-top: 18px; margin-bottom: 18px; border-top: 1px dashed #ccc;\"\">\n",
|
|
"<div align=\"center\" style=\"margin-top: -35px;\"><div style=\"display: inline-block; background: #fff; padding: 5px; color: #999; font-family: monospace\">[2]</div>\n",
|
|
"</div>\n",
|
|
" "
|
|
],
|
|
"text/plain": [
|
|
"<IPython.core.display.HTML object>"
|
|
]
|
|
},
|
|
"metadata": {},
|
|
"output_type": "display_data"
|
|
},
|
|
{
|
|
"data": {
|
|
"text/html": [
|
|
"<svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"49.790368336028344%\" y1=\"33\" x2=\"49.790368336028344%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"49.790368336028344%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.5</text><line x1=\"32.87910574196524%\" y1=\"33\" x2=\"32.87910574196524%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"32.87910574196524%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.3</text><line x1=\"15.967843147902148%\" y1=\"33\" x2=\"15.967843147902148%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"15.967843147902148%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.1</text><line x1=\"66.70163093009144%\" y1=\"33\" x2=\"66.70163093009144%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"66.70163093009144%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.7</text><line x1=\"83.61289352415453%\" y1=\"33\" x2=\"83.61289352415453%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"83.61289352415453%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.9</text><line x1=\"26.991731907389273%\" y1=\"33\" x2=\"26.991731907389273%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"26.991731907389273%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.230373</text><text x=\"26.991731907389273%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.230373</text><text x=\"26.991731907389273%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"91.34661764654345%\" y1=\"33\" x2=\"91.34661764654345%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"91.34661764654345%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.991462</text><text x=\"91.34661764654345%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0.991462</text><text x=\"91.34661764654345%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">anger</tspan>(inputs)</text><rect x=\"25.143487795740924%\" width=\"66.20312985080254%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"45.23401953040098%\" x2=\"91.34661764654345%\" y1=\"60\" y2=\"60\" id=\"_fb_ehrgvfegexoguxgyqgcp_ind_9\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"68.29031858847222%\" y=\"71\" font-size=\"12px\" id=\"_fs_ehrgvfegexoguxgyqgcp_ind_9\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.545</text><svg x=\"45.23401953040098%\" y=\"40\" height=\"20\" width=\"46.11259811614247%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">greedy</text> </svg></svg><line x1=\"35.2890350626654%\" x2=\"45.23401953040098%\" y1=\"60\" y2=\"60\" id=\"_fb_ehrgvfegexoguxgyqgcp_ind_10\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"40.26152729653319%\" y=\"71\" font-size=\"12px\" id=\"_fs_ehrgvfegexoguxgyqgcp_ind_10\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.118</text><svg x=\"35.2890350626654%\" y=\"40\" height=\"20\" width=\"9.94498446773558%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">wrong</text> </svg></svg><line x1=\"29.341729950315457%\" x2=\"35.2890350626654%\" y1=\"60\" y2=\"60\" id=\"_fb_ehrgvfegexoguxgyqgcp_ind_2\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"32.31538250649043%\" y=\"71\" font-size=\"12px\" id=\"_fs_ehrgvfegexoguxgyqgcp_ind_2\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.07</text><svg x=\"29.341729950315457%\" y=\"40\" height=\"20\" width=\"5.947305112349941%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">grabbing</text> </svg></svg><line x1=\"27.356398635299428%\" x2=\"29.341729950315457%\" y1=\"60\" y2=\"60\" id=\"_fb_ehrgvfegexoguxgyqgcp_ind_6\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"28.34906429280744%\" y=\"71\" font-size=\"12px\" id=\"_fs_ehrgvfegexoguxgyqgcp_ind_6\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.023</text><svg x=\"27.356398635299428%\" y=\"40\" height=\"20\" width=\"1.9853313150160297%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">post</text> </svg></svg><line x1=\"26.10312877154458%\" x2=\"27.356398635299428%\" y1=\"60\" y2=\"60\" id=\"_fb_ehrgvfegexoguxgyqgcp_ind_1\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"26.729763703422%\" y=\"71\" font-size=\"12px\" id=\"_fs_ehrgvfegexoguxgyqgcp_ind_1\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.015</text><svg x=\"26.10312877154458%\" y=\"40\" height=\"20\" width=\"1.2532698637548485%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">im</text> </svg></svg><line x1=\"25.589432287369696%\" x2=\"26.10312877154458%\" y1=\"60\" y2=\"60\" id=\"_fb_ehrgvfegexoguxgyqgcp_ind_8\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"25.84628052945714%\" y=\"71\" font-size=\"12px\" id=\"_fs_ehrgvfegexoguxgyqgcp_ind_8\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.006</text><svg x=\"25.589432287369696%\" y=\"40\" height=\"20\" width=\"0.5136964841748828%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"25.1434896857218%\" x2=\"25.589432287369696%\" y1=\"60\" y2=\"60\" id=\"_fb_ehrgvfegexoguxgyqgcp_ind_4\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"25.366460986545746%\" y=\"71\" font-size=\"12px\" id=\"_fs_ehrgvfegexoguxgyqgcp_ind_4\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.005</text><svg x=\"25.1434896857218%\" y=\"40\" height=\"20\" width=\"0.44594260164789645%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">minute</text> </svg></svg><line x1=\"25.143487795740924%\" x2=\"25.1434896857218%\" y1=\"60\" y2=\"60\" id=\"_fb_ehrgvfegexoguxgyqgcp_ind_11\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"25.143488740731364%\" y=\"71\" font-size=\"12px\" id=\"_fs_ehrgvfegexoguxgyqgcp_ind_11\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"25.143487795740924%\" y=\"40\" height=\"20\" width=\"1.8899808758021663e-06%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"45.23401953040098%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"45.23401953040098%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"45.23401953040098%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"45.23401953040098%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"45.23401953040098%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"45.23401953040098%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"45.23401953040098%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"45.23401953040098%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"35.2890350626654%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"35.2890350626654%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"35.2890350626654%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"35.2890350626654%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"35.2890350626654%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"35.2890350626654%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"35.2890350626654%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"35.2890350626654%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"29.341729950315457%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"29.341729950315457%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"29.341729950315457%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"29.341729950315457%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"29.341729950315457%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"29.341729950315457%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"29.341729950315457%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"29.341729950315457%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"27.356398635299428%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"27.356398635299428%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"27.356398635299428%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"27.356398635299428%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"27.356398635299428%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"27.356398635299428%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"27.356398635299428%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"27.356398635299428%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"26.10312877154458%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"26.10312877154458%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"26.10312877154458%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"26.10312877154458%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"26.10312877154458%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"26.10312877154458%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"26.10312877154458%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"26.10312877154458%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"25.589432287369696%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"25.589432287369696%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"25.589432287369696%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"25.589432287369696%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"25.589432287369696%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"25.589432287369696%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"25.589432287369696%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"25.589432287369696%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"25.1434896857218%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"25.1434896857218%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"25.1434896857218%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"25.1434896857218%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"25.1434896857218%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"25.1434896857218%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"25.1434896857218%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"25.1434896857218%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"91.34661764654345%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"25.143487795740924%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"91.34661764654345%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"45.23401953040098%\" y=\"40\" height=\"20\" width=\"46.11259811614247%\" onmouseover=\"document.getElementById('_tp_ehrgvfegexoguxgyqgcp_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_ehrgvfegexoguxgyqgcp_ind_9').style.opacity = 1;document.getElementById('_fb_ehrgvfegexoguxgyqgcp_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ehrgvfegexoguxgyqgcp_ind_9').style.textDecoration = 'none';document.getElementById('_fs_ehrgvfegexoguxgyqgcp_ind_9').style.opacity = 0;document.getElementById('_fb_ehrgvfegexoguxgyqgcp_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"45.23401953040098%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"35.2890350626654%\" y=\"40\" height=\"20\" width=\"9.94498446773558%\" onmouseover=\"document.getElementById('_tp_ehrgvfegexoguxgyqgcp_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_ehrgvfegexoguxgyqgcp_ind_10').style.opacity = 1;document.getElementById('_fb_ehrgvfegexoguxgyqgcp_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ehrgvfegexoguxgyqgcp_ind_10').style.textDecoration = 'none';document.getElementById('_fs_ehrgvfegexoguxgyqgcp_ind_10').style.opacity = 0;document.getElementById('_fb_ehrgvfegexoguxgyqgcp_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"35.2890350626654%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"29.341729950315457%\" y=\"40\" height=\"20\" width=\"5.947305112349941%\" onmouseover=\"document.getElementById('_tp_ehrgvfegexoguxgyqgcp_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_ehrgvfegexoguxgyqgcp_ind_2').style.opacity = 1;document.getElementById('_fb_ehrgvfegexoguxgyqgcp_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ehrgvfegexoguxgyqgcp_ind_2').style.textDecoration = 'none';document.getElementById('_fs_ehrgvfegexoguxgyqgcp_ind_2').style.opacity = 0;document.getElementById('_fb_ehrgvfegexoguxgyqgcp_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"29.341729950315457%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"27.356398635299428%\" y=\"40\" height=\"20\" width=\"1.9853313150160297%\" onmouseover=\"document.getElementById('_tp_ehrgvfegexoguxgyqgcp_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_ehrgvfegexoguxgyqgcp_ind_6').style.opacity = 1;document.getElementById('_fb_ehrgvfegexoguxgyqgcp_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ehrgvfegexoguxgyqgcp_ind_6').style.textDecoration = 'none';document.getElementById('_fs_ehrgvfegexoguxgyqgcp_ind_6').style.opacity = 0;document.getElementById('_fb_ehrgvfegexoguxgyqgcp_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"27.356398635299428%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"26.10312877154458%\" y=\"40\" height=\"20\" width=\"1.2532698637548485%\" onmouseover=\"document.getElementById('_tp_ehrgvfegexoguxgyqgcp_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_ehrgvfegexoguxgyqgcp_ind_1').style.opacity = 1;document.getElementById('_fb_ehrgvfegexoguxgyqgcp_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ehrgvfegexoguxgyqgcp_ind_1').style.textDecoration = 'none';document.getElementById('_fs_ehrgvfegexoguxgyqgcp_ind_1').style.opacity = 0;document.getElementById('_fb_ehrgvfegexoguxgyqgcp_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"26.10312877154458%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"25.589432287369696%\" y=\"40\" height=\"20\" width=\"0.5136964841748828%\" onmouseover=\"document.getElementById('_tp_ehrgvfegexoguxgyqgcp_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_ehrgvfegexoguxgyqgcp_ind_8').style.opacity = 1;document.getElementById('_fb_ehrgvfegexoguxgyqgcp_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ehrgvfegexoguxgyqgcp_ind_8').style.textDecoration = 'none';document.getElementById('_fs_ehrgvfegexoguxgyqgcp_ind_8').style.opacity = 0;document.getElementById('_fb_ehrgvfegexoguxgyqgcp_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"25.589432287369696%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"25.1434896857218%\" y=\"40\" height=\"20\" width=\"0.44594260164789645%\" onmouseover=\"document.getElementById('_tp_ehrgvfegexoguxgyqgcp_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_ehrgvfegexoguxgyqgcp_ind_4').style.opacity = 1;document.getElementById('_fb_ehrgvfegexoguxgyqgcp_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ehrgvfegexoguxgyqgcp_ind_4').style.textDecoration = 'none';document.getElementById('_fs_ehrgvfegexoguxgyqgcp_ind_4').style.opacity = 0;document.getElementById('_fb_ehrgvfegexoguxgyqgcp_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"25.143487795740924%\" y=\"40\" height=\"20\" width=\"1.8899808758021663e-06%\" onmouseover=\"document.getElementById('_tp_ehrgvfegexoguxgyqgcp_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_ehrgvfegexoguxgyqgcp_ind_11').style.opacity = 1;document.getElementById('_fb_ehrgvfegexoguxgyqgcp_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ehrgvfegexoguxgyqgcp_ind_11').style.textDecoration = 'none';document.getElementById('_fs_ehrgvfegexoguxgyqgcp_ind_11').style.opacity = 0;document.getElementById('_fb_ehrgvfegexoguxgyqgcp_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"91.34661764654345%\" width=\"1.8482441116483475%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"91.34661764654345%\" x2=\"92.71167220096538%\" y1=\"60\" y2=\"60\" id=\"_fb_ehrgvfegexoguxgyqgcp_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"92.02914492375442%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_ehrgvfegexoguxgyqgcp_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.016</text><svg x=\"91.34661764654345%\" y=\"40\" height=\"20\" width=\"1.3650545544219312%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><line x1=\"92.71167220096538%\" x2=\"93.09181480347797%\" y1=\"60\" y2=\"60\" id=\"_fb_ehrgvfegexoguxgyqgcp_ind_7\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"92.90174350222168%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_ehrgvfegexoguxgyqgcp_ind_7\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.004</text><svg x=\"92.71167220096538%\" y=\"40\" height=\"20\" width=\"0.380142602512592%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"93.09181480347797%\" x2=\"93.19486073445215%\" y1=\"60\" y2=\"60\" id=\"_fb_ehrgvfegexoguxgyqgcp_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"93.14333776896507%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_ehrgvfegexoguxgyqgcp_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.001</text><svg x=\"93.09181480347797%\" y=\"40\" height=\"20\" width=\"0.1030459309741758%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">a</text> </svg></svg><line x1=\"93.19486073445215%\" x2=\"93.19486175819179%\" y1=\"60\" y2=\"60\" id=\"_fb_ehrgvfegexoguxgyqgcp_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"93.19486124632198%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_ehrgvfegexoguxgyqgcp_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"93.19486073445215%\" y=\"40\" height=\"20\" width=\"1.0237396423917744e-06%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"92.71167220096538%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"92.71167220096538%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"92.71167220096538%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"92.71167220096538%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"92.71167220096538%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"92.71167220096538%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"92.71167220096538%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"92.71167220096538%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"93.09181480347797%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"93.09181480347797%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"93.09181480347797%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"93.09181480347797%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"93.09181480347797%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"93.09181480347797%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"93.09181480347797%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"93.09181480347797%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"93.19486073445215%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"93.19486073445215%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"93.19486073445215%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"93.19486073445215%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"93.19486073445215%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"93.19486073445215%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"93.19486073445215%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"93.19486073445215%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"91.34661764654345%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"93.19486175819179%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"92.71167220096538%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.34661764654345%\" y=\"40\" height=\"20\" width=\"1.3650545544219312%\" onmouseover=\"document.getElementById('_tp_ehrgvfegexoguxgyqgcp_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_ehrgvfegexoguxgyqgcp_ind_5').style.opacity = 1;document.getElementById('_fb_ehrgvfegexoguxgyqgcp_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ehrgvfegexoguxgyqgcp_ind_5').style.textDecoration = 'none';document.getElementById('_fs_ehrgvfegexoguxgyqgcp_ind_5').style.opacity = 0;document.getElementById('_fb_ehrgvfegexoguxgyqgcp_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"93.09181480347797%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"92.71167220096538%\" y=\"40\" height=\"20\" width=\"0.380142602512592%\" onmouseover=\"document.getElementById('_tp_ehrgvfegexoguxgyqgcp_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_ehrgvfegexoguxgyqgcp_ind_7').style.opacity = 1;document.getElementById('_fb_ehrgvfegexoguxgyqgcp_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ehrgvfegexoguxgyqgcp_ind_7').style.textDecoration = 'none';document.getElementById('_fs_ehrgvfegexoguxgyqgcp_ind_7').style.opacity = 0;document.getElementById('_fb_ehrgvfegexoguxgyqgcp_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"93.19486073445215%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"93.09181480347797%\" y=\"40\" height=\"20\" width=\"0.1030459309741758%\" onmouseover=\"document.getElementById('_tp_ehrgvfegexoguxgyqgcp_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_ehrgvfegexoguxgyqgcp_ind_3').style.opacity = 1;document.getElementById('_fb_ehrgvfegexoguxgyqgcp_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ehrgvfegexoguxgyqgcp_ind_3').style.textDecoration = 'none';document.getElementById('_fs_ehrgvfegexoguxgyqgcp_ind_3').style.opacity = 0;document.getElementById('_fb_ehrgvfegexoguxgyqgcp_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"93.19486073445215%\" y=\"40\" height=\"20\" width=\"1.0237396423917744e-06%\" onmouseover=\"document.getElementById('_tp_ehrgvfegexoguxgyqgcp_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_ehrgvfegexoguxgyqgcp_ind_0').style.opacity = 1;document.getElementById('_fb_ehrgvfegexoguxgyqgcp_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_ehrgvfegexoguxgyqgcp_ind_0').style.textDecoration = 'none';document.getElementById('_fs_ehrgvfegexoguxgyqgcp_ind_0').style.opacity = 0;document.getElementById('_fb_ehrgvfegexoguxgyqgcp_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_ehrgvfegexoguxgyqgcp_ind_0'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ehrgvfegexoguxgyqgcp_ind_0').style.opacity = 1; document.getElementById('_fs_ehrgvfegexoguxgyqgcp_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ehrgvfegexoguxgyqgcp_ind_0').style.opacity = 0; document.getElementById('_fs_ehrgvfegexoguxgyqgcp_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.015</div\n",
|
|
" ><div id='_tp_ehrgvfegexoguxgyqgcp_ind_1'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.02253911665676371); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ehrgvfegexoguxgyqgcp_ind_1').style.opacity = 1; document.getElementById('_fs_ehrgvfegexoguxgyqgcp_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ehrgvfegexoguxgyqgcp_ind_1').style.opacity = 0; document.getElementById('_fs_ehrgvfegexoguxgyqgcp_ind_1').style.opacity = 0;\"\n",
|
|
" >im </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.07</div\n",
|
|
" ><div id='_tp_ehrgvfegexoguxgyqgcp_ind_2'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.12501485442661908); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ehrgvfegexoguxgyqgcp_ind_2').style.opacity = 1; document.getElementById('_fs_ehrgvfegexoguxgyqgcp_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ehrgvfegexoguxgyqgcp_ind_2').style.opacity = 0; document.getElementById('_fs_ehrgvfegexoguxgyqgcp_ind_2').style.opacity = 0;\"\n",
|
|
" >grabbing </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.001</div\n",
|
|
" ><div id='_tp_ehrgvfegexoguxgyqgcp_ind_3'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ehrgvfegexoguxgyqgcp_ind_3').style.opacity = 1; document.getElementById('_fs_ehrgvfegexoguxgyqgcp_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ehrgvfegexoguxgyqgcp_ind_3').style.opacity = 0; document.getElementById('_fs_ehrgvfegexoguxgyqgcp_ind_3').style.opacity = 0;\"\n",
|
|
" >a </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.005</div\n",
|
|
" ><div id='_tp_ehrgvfegexoguxgyqgcp_ind_4'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ehrgvfegexoguxgyqgcp_ind_4').style.opacity = 1; document.getElementById('_fs_ehrgvfegexoguxgyqgcp_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ehrgvfegexoguxgyqgcp_ind_4').style.opacity = 0; document.getElementById('_fs_ehrgvfegexoguxgyqgcp_ind_4').style.opacity = 0;\"\n",
|
|
" >minute </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.016</div\n",
|
|
" ><div id='_tp_ehrgvfegexoguxgyqgcp_ind_5'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.022539116656763607); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ehrgvfegexoguxgyqgcp_ind_5').style.opacity = 1; document.getElementById('_fs_ehrgvfegexoguxgyqgcp_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ehrgvfegexoguxgyqgcp_ind_5').style.opacity = 0; document.getElementById('_fs_ehrgvfegexoguxgyqgcp_ind_5').style.opacity = 0;\"\n",
|
|
" >to </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.023</div\n",
|
|
" ><div id='_tp_ehrgvfegexoguxgyqgcp_ind_6'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.03830461477520289); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ehrgvfegexoguxgyqgcp_ind_6').style.opacity = 1; document.getElementById('_fs_ehrgvfegexoguxgyqgcp_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ehrgvfegexoguxgyqgcp_ind_6').style.opacity = 0; document.getElementById('_fs_ehrgvfegexoguxgyqgcp_ind_6').style.opacity = 0;\"\n",
|
|
" >post </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.004</div\n",
|
|
" ><div id='_tp_ehrgvfegexoguxgyqgcp_ind_7'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ehrgvfegexoguxgyqgcp_ind_7').style.opacity = 1; document.getElementById('_fs_ehrgvfegexoguxgyqgcp_ind_7').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ehrgvfegexoguxgyqgcp_ind_7').style.opacity = 0; document.getElementById('_fs_ehrgvfegexoguxgyqgcp_ind_7').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.006</div\n",
|
|
" ><div id='_tp_ehrgvfegexoguxgyqgcp_ind_8'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ehrgvfegexoguxgyqgcp_ind_8').style.opacity = 1; document.getElementById('_fs_ehrgvfegexoguxgyqgcp_ind_8').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ehrgvfegexoguxgyqgcp_ind_8').style.opacity = 0; document.getElementById('_fs_ehrgvfegexoguxgyqgcp_ind_8').style.opacity = 0;\"\n",
|
|
" >feel </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.545</div\n",
|
|
" ><div id='_tp_ehrgvfegexoguxgyqgcp_ind_9'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 1.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ehrgvfegexoguxgyqgcp_ind_9').style.opacity = 1; document.getElementById('_fs_ehrgvfegexoguxgyqgcp_ind_9').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ehrgvfegexoguxgyqgcp_ind_9').style.opacity = 0; document.getElementById('_fs_ehrgvfegexoguxgyqgcp_ind_9').style.opacity = 0;\"\n",
|
|
" >greedy </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.118</div\n",
|
|
" ><div id='_tp_ehrgvfegexoguxgyqgcp_ind_10'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.2117250940780353); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ehrgvfegexoguxgyqgcp_ind_10').style.opacity = 1; document.getElementById('_fs_ehrgvfegexoguxgyqgcp_ind_10').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ehrgvfegexoguxgyqgcp_ind_10').style.opacity = 0; document.getElementById('_fs_ehrgvfegexoguxgyqgcp_ind_10').style.opacity = 0;\"\n",
|
|
" >wrong</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_ehrgvfegexoguxgyqgcp_ind_11'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_ehrgvfegexoguxgyqgcp_ind_11').style.opacity = 1; document.getElementById('_fs_ehrgvfegexoguxgyqgcp_ind_11').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_ehrgvfegexoguxgyqgcp_ind_11').style.opacity = 0; document.getElementById('_fs_ehrgvfegexoguxgyqgcp_ind_11').style.opacity = 0;\"\n",
|
|
" ></div></div></div>"
|
|
],
|
|
"text/plain": [
|
|
"<IPython.core.display.HTML object>"
|
|
]
|
|
},
|
|
"metadata": {},
|
|
"output_type": "display_data"
|
|
}
|
|
],
|
|
"source": [
|
|
"shap.plots.text(shap_values[:, :, \"anger\"])"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "markdown",
|
|
"metadata": {},
|
|
"source": [
|
|
"### Plotting the top words impacting a specific class\n",
|
|
"\n",
|
|
"In addition to slicing, `Explanation` objects also support a set of reducing methods. Here we use the `.mean(0)` to take the average impact of all words towards the \"joy\" class. Note that here we are also averaging over three examples, to get a better summary you would want to use a larger portion of the dataset."
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 12,
|
|
"metadata": {},
|
|
"outputs": [
|
|
{
|
|
"data": {
|
|
"image/png": "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lmVmZl7304X32t58882PedO8z0mga26LhISEY5JUV1en+vr6O1t6fFRUVI53u6qqqntr65GdnR1x9913/75///4X4+Pj3eHh4TYxMbF+0KBBZ2bNmvWMv2NSUlLqvPPlSdLq1at/5PtceRe8CHA+19SpU1/s1avX5ejoaBsdHW379OlTOm3atF82VdesrKyYqVOn/rl///4XExIS6sPDw21CQkL9wIEDz86cOfObgY5r+NqcN2/eu4cNG3YkOTm5Ljw83Pbo0aOyqXPPmTPncw2vLTc39yO+1+zvdTt79uwvDx48+GRycrL3deju06dP6eTJk/+VlZUVF+h86enpcyZNmvRa//79LyYmJtaHh4fbmJgY271798oxY8a8tXDhwlH+jjPGWO98eZK0fPny9b519D4HDa+psfdc3759S4wxdtiwYYcb7mv4mTBnzpxP3XnnnflJSUn1LpfLDho0qMA3f2vbUJLmzZv3nrvuuutgly5daiIjI21kZKRNTk6u6927d9mYMWM2zp0794ONHQ8AAAC0yL7Tzrx20tWgWkNhYVd74+093fyyz5dcXVAjUNmSNMwzo9LeBv1Mssc7q9ZK0v3fkzYddBbkkJw5+N7/I6dX3vA06cP3NL9eAJqtTcNsw8PDr7yrL1y40OYgWDDMmjXrfzZu3PhNbw8mSbp48WLExYsXZ/fr1+9gVlZW77q6uvFbt259/eLFi1cG/tfW1pr9+/f3y8/PX7tgwYK7ly1b9lZrzj9hwoRl27ZtS/ddJbiurk6VlZVxZ86cSe/UqVNBenp69vLly5e25Trborq6uot3Oyws7ExLj6+rq7sy6UF4ePjl1tQhIyOj365du3aePn06wTe9rKwsrKysrMfhw4e/NnTo0A/ecccddy1evLjJgFdTrLXh+/bty2+4OMjp06cTTp8+/ejYsWOHv/32235fwwsWLJi2ffv2VQ3nfLx8+XLY5cuXux05cuR/hg0b9r4BAwYMW7x4ccB+5DNmzPj+xo0bH6+rqwuUJSiysrKSDx06tPPgwYPXzGdYV1dnPNf7zu7du2csXLhw0tKlS3f55snMzOyzYsWK1xuWWV9fr6qqquhz585NiouL2z537tyPrVq16nfteiEtMHny5H9u3rz5XYFW525LG06bNu2XGzdufLThojAlJSWukpKS+Pz8/MkDBw7sJ+nPwb0q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\n",
|
|
"text/plain": [
|
|
"<Figure size 576x468 with 1 Axes>"
|
|
]
|
|
},
|
|
"metadata": {
|
|
"image/png": {
|
|
"height": 401,
|
|
"width": 633
|
|
}
|
|
},
|
|
"output_type": "display_data"
|
|
}
|
|
],
|
|
"source": [
|
|
"shap.plots.bar(shap_values[:, :, \"joy\"].mean(0))"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 13,
|
|
"metadata": {},
|
|
"outputs": [
|
|
{
|
|
"data": {
|
|
"image/png": "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\n",
|
|
"text/plain": [
|
|
"<Figure size 576x468 with 1 Axes>"
|
|
]
|
|
},
|
|
"metadata": {
|
|
"image/png": {
|
|
"height": 401,
|
|
"width": 633
|
|
}
|
|
},
|
|
"output_type": "display_data"
|
|
}
|
|
],
|
|
"source": [
|
|
"# we can sort the bar chart in decending order\n",
|
|
"shap.plots.bar(shap_values[:, :, \"joy\"].mean(0), order=shap.Explanation.argsort)"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 14,
|
|
"metadata": {
|
|
"scrolled": false
|
|
},
|
|
"outputs": [
|
|
{
|
|
"data": {
|
|
"image/png": "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\n",
|
|
"text/plain": [
|
|
"<Figure size 576x468 with 1 Axes>"
|
|
]
|
|
},
|
|
"metadata": {
|
|
"image/png": {
|
|
"height": 401,
|
|
"width": 633
|
|
}
|
|
},
|
|
"output_type": "display_data"
|
|
}
|
|
],
|
|
"source": [
|
|
"# ...or acending order\n",
|
|
"shap.plots.bar(shap_values[:, :, \"joy\"].mean(0), order=shap.Explanation.argsort.flip)"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "markdown",
|
|
"metadata": {},
|
|
"source": [
|
|
"### Explain the log odds instead of the probabilities\n",
|
|
"\n",
|
|
"In the examples above we explained the direct output of the pipline object, which are class probabilities. Sometimes it makes more sense to work in a log odds space where it is natural to add and subtract effects (addition and subtraction correspond to the addition or subtraction of bits of evidence information). To work with logits we can use a parameter of the `shap.models.TransformersPipeline` object:"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 15,
|
|
"metadata": {},
|
|
"outputs": [
|
|
{
|
|
"data": {
|
|
"text/html": [
|
|
"\n",
|
|
"<br>\n",
|
|
"<hr style=\"height: 1px; background-color: #fff; border: none; margin-top: 18px; margin-bottom: 18px; border-top: 1px dashed #ccc;\"\">\n",
|
|
"<div align=\"center\" style=\"margin-top: -35px;\"><div style=\"display: inline-block; background: #fff; padding: 5px; color: #999; font-family: monospace\">[0]</div>\n",
|
|
"</div>\n",
|
|
" "
|
|
],
|
|
"text/plain": [
|
|
"<IPython.core.display.HTML object>"
|
|
]
|
|
},
|
|
"metadata": {},
|
|
"output_type": "display_data"
|
|
},
|
|
{
|
|
"data": {
|
|
"text/html": [
|
|
"<div align='center'>\n",
|
|
"<script>\n",
|
|
" document._hover_bwovfuqhtsyfngeozrqz = '_tp_bwovfuqhtsyfngeozrqz_output_0';\n",
|
|
" document._zoom_bwovfuqhtsyfngeozrqz = undefined;\n",
|
|
" function _output_onclick_bwovfuqhtsyfngeozrqz(i) {\n",
|
|
" var next_id = undefined;\n",
|
|
" \n",
|
|
" if (document._zoom_bwovfuqhtsyfngeozrqz !== undefined) {\n",
|
|
" document.getElementById(document._zoom_bwovfuqhtsyfngeozrqz+ '_zoom').style.display = 'none';\n",
|
|
" \n",
|
|
" if (document._zoom_bwovfuqhtsyfngeozrqz === '_tp_bwovfuqhtsyfngeozrqz_output_' + i) {\n",
|
|
" document.getElementById(document._zoom_bwovfuqhtsyfngeozrqz).style.display = 'block';\n",
|
|
" document.getElementById(document._zoom_bwovfuqhtsyfngeozrqz+'_name').style.background = '#dddddd';\n",
|
|
" } else {\n",
|
|
" document.getElementById(document._zoom_bwovfuqhtsyfngeozrqz).style.display = 'none';\n",
|
|
" document.getElementById(document._zoom_bwovfuqhtsyfngeozrqz+'_name').style.background = '#ffffff';\n",
|
|
" }\n",
|
|
" }\n",
|
|
" if (document._zoom_bwovfuqhtsyfngeozrqz !== '_tp_bwovfuqhtsyfngeozrqz_output_' + i) {\n",
|
|
" next_id = '_tp_bwovfuqhtsyfngeozrqz_output_' + i;\n",
|
|
" document.getElementById(next_id).style.display = 'none';\n",
|
|
" document.getElementById(next_id + '_zoom').style.display = 'block';\n",
|
|
" document.getElementById(next_id+'_name').style.background = '#bbbbbb';\n",
|
|
" }\n",
|
|
" document._zoom_bwovfuqhtsyfngeozrqz = next_id;\n",
|
|
" }\n",
|
|
" function _output_onmouseover_bwovfuqhtsyfngeozrqz(i, el) {\n",
|
|
" if (document._zoom_bwovfuqhtsyfngeozrqz !== undefined) { return; }\n",
|
|
" if (document._hover_bwovfuqhtsyfngeozrqz !== undefined) {\n",
|
|
" document.getElementById(document._hover_bwovfuqhtsyfngeozrqz + '_name').style.background = '#ffffff';\n",
|
|
" document.getElementById(document._hover_bwovfuqhtsyfngeozrqz).style.display = 'none';\n",
|
|
" }\n",
|
|
" document.getElementById('_tp_bwovfuqhtsyfngeozrqz_output_' + i).style.display = 'block';\n",
|
|
" el.style.background = '#dddddd';\n",
|
|
" document._hover_bwovfuqhtsyfngeozrqz = '_tp_bwovfuqhtsyfngeozrqz_output_' + i;\n",
|
|
" }\n",
|
|
"</script>\n",
|
|
"<div style=\"color: rgb(120,120,120); font-size: 12px;\">outputs</div>\n",
|
|
"<div style=\"display: inline; background: #dddddd; border-radius: 3px; padding: 0px\" id=\"_tp_bwovfuqhtsyfngeozrqz_output_0_name\"\n",
|
|
" onclick=\"_output_onclick_bwovfuqhtsyfngeozrqz(0)\"\n",
|
|
" onmouseover=\"_output_onmouseover_bwovfuqhtsyfngeozrqz(0, this);\">sadness</div>\n",
|
|
"<div style=\"display: inline; background: #ffffff; border-radius: 3px; padding: 0px\" id=\"_tp_bwovfuqhtsyfngeozrqz_output_1_name\"\n",
|
|
" onclick=\"_output_onclick_bwovfuqhtsyfngeozrqz(1)\"\n",
|
|
" onmouseover=\"_output_onmouseover_bwovfuqhtsyfngeozrqz(1, this);\">joy</div>\n",
|
|
"<div style=\"display: inline; background: #ffffff; border-radius: 3px; padding: 0px\" id=\"_tp_bwovfuqhtsyfngeozrqz_output_2_name\"\n",
|
|
" onclick=\"_output_onclick_bwovfuqhtsyfngeozrqz(2)\"\n",
|
|
" onmouseover=\"_output_onmouseover_bwovfuqhtsyfngeozrqz(2, this);\">love</div>\n",
|
|
"<div style=\"display: inline; background: #ffffff; border-radius: 3px; padding: 0px\" id=\"_tp_bwovfuqhtsyfngeozrqz_output_3_name\"\n",
|
|
" onclick=\"_output_onclick_bwovfuqhtsyfngeozrqz(3)\"\n",
|
|
" onmouseover=\"_output_onmouseover_bwovfuqhtsyfngeozrqz(3, this);\">anger</div>\n",
|
|
"<div style=\"display: inline; background: #ffffff; border-radius: 3px; padding: 0px\" id=\"_tp_bwovfuqhtsyfngeozrqz_output_4_name\"\n",
|
|
" onclick=\"_output_onclick_bwovfuqhtsyfngeozrqz(4)\"\n",
|
|
" onmouseover=\"_output_onmouseover_bwovfuqhtsyfngeozrqz(4, this);\">fear</div>\n",
|
|
"<div style=\"display: inline; background: #ffffff; border-radius: 3px; padding: 0px\" id=\"_tp_bwovfuqhtsyfngeozrqz_output_5_name\"\n",
|
|
" onclick=\"_output_onclick_bwovfuqhtsyfngeozrqz(5)\"\n",
|
|
" onmouseover=\"_output_onmouseover_bwovfuqhtsyfngeozrqz(5, this);\">surprise</div><br><br><div id='_tp_bwovfuqhtsyfngeozrqz_output_0' style='display: block';><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"49.99634084343776%\" y1=\"33\" x2=\"49.99634084343776%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"49.99634084343776%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1</text><line x1=\"34.135128947971666%\" y1=\"33\" x2=\"34.135128947971666%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"34.135128947971666%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"18.273917052505578%\" y1=\"33\" x2=\"18.273917052505578%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"18.273917052505578%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7</text><line x1=\"65.85755273890385%\" y1=\"33\" x2=\"65.85755273890385%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"65.85755273890385%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">2</text><line x1=\"81.71876463436993%\" y1=\"33\" x2=\"81.71876463436993%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"81.71876463436993%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">5</text><line x1=\"45.31063118055471%\" y1=\"33\" x2=\"45.31063118055471%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"45.31063118055471%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1.88626</text><text x=\"45.31063118055471%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1.88626</text><text x=\"45.31063118055471%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"85.02552945606503%\" y1=\"33\" x2=\"85.02552945606503%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"85.02552945606503%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">5.62544</text><text x=\"85.02552945606503%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">5.62544</text><text x=\"85.02552945606503%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">sadness</tspan>(inputs)</text><rect x=\"45.31063116896878%\" width=\"39.714898287096226%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"48.53970474002178%\" x2=\"85.02552945606503%\" y1=\"60\" y2=\"60\" id=\"_fb_xmfrktzfjjamfpjnpvaj_ind_5\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"66.7826170980434%\" y=\"71\" font-size=\"12px\" id=\"_fs_xmfrktzfjjamfpjnpvaj_ind_5\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">6.901</text><svg x=\"48.53970474002178%\" y=\"40\" height=\"20\" width=\"36.48582471604325%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">humiliated</text> </svg></svg><line x1=\"47.47454936473076%\" x2=\"48.53970474002178%\" y1=\"60\" y2=\"60\" id=\"_fb_xmfrktzfjjamfpjnpvaj_ind_4\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"48.007127052376276%\" y=\"71\" font-size=\"12px\" id=\"_fs_xmfrktzfjjamfpjnpvaj_ind_4\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.201</text><svg x=\"47.47454936473076%\" y=\"40\" height=\"20\" width=\"1.0651553752910203%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"46.55831673193769%\" x2=\"47.47454936473076%\" y1=\"60\" y2=\"60\" id=\"_fb_xmfrktzfjjamfpjnpvaj_ind_2\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"47.01643304833422%\" y=\"71\" font-size=\"12px\" id=\"_fs_xmfrktzfjjamfpjnpvaj_ind_2\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.173</text><svg x=\"46.55831673193769%\" y=\"40\" height=\"20\" width=\"0.9162326327930757%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">didn</text> </svg></svg><line x1=\"45.71137183395674%\" x2=\"46.55831673193769%\" y1=\"60\" y2=\"60\" id=\"_fb_xmfrktzfjjamfpjnpvaj_ind_1\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"46.13484428294721%\" y=\"71\" font-size=\"12px\" id=\"_fs_xmfrktzfjjamfpjnpvaj_ind_1\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.16</text><svg x=\"45.71137183395674%\" y=\"40\" height=\"20\" width=\"0.8469448979809471%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"45.31063185803158%\" x2=\"45.71137183395674%\" y1=\"60\" y2=\"60\" id=\"_fb_xmfrktzfjjamfpjnpvaj_ind_3\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"45.51100184599416%\" y=\"71\" font-size=\"12px\" id=\"_fs_xmfrktzfjjamfpjnpvaj_ind_3\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.076</text><svg x=\"45.31063185803158%\" y=\"40\" height=\"20\" width=\"0.40073997592516264%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">t</text> </svg></svg><line x1=\"45.3106311689688%\" x2=\"45.31063185803158%\" y1=\"60\" y2=\"60\" id=\"_fb_xmfrktzfjjamfpjnpvaj_ind_6\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"45.310631513500184%\" y=\"71\" font-size=\"12px\" id=\"_fs_xmfrktzfjjamfpjnpvaj_ind_6\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"45.3106311689688%\" y=\"40\" height=\"20\" width=\"6.890627801681148e-07%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"48.53970474002178%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"48.53970474002178%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"48.53970474002178%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"48.53970474002178%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"48.53970474002178%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"48.53970474002178%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"48.53970474002178%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"48.53970474002178%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"47.47454936473076%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"47.47454936473076%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"47.47454936473076%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"47.47454936473076%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"47.47454936473076%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"47.47454936473076%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"47.47454936473076%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"47.47454936473076%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"46.55831673193769%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"46.55831673193769%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"46.55831673193769%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"46.55831673193769%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"46.55831673193769%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"46.55831673193769%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"46.55831673193769%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"46.55831673193769%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"45.71137183395674%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"45.71137183395674%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"45.71137183395674%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"45.71137183395674%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"45.71137183395674%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"45.71137183395674%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"45.71137183395674%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"45.71137183395674%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"45.31063185803158%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"45.31063185803158%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"45.31063185803158%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"45.31063185803158%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"45.31063185803158%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"45.31063185803158%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"45.31063185803158%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"45.31063185803158%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"85.02552945606503%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"45.31063116896878%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"85.02552945606503%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"48.53970474002178%\" y=\"40\" height=\"20\" width=\"36.48582471604325%\" onmouseover=\"document.getElementById('_tp_xmfrktzfjjamfpjnpvaj_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_xmfrktzfjjamfpjnpvaj_ind_5').style.opacity = 1;document.getElementById('_fb_xmfrktzfjjamfpjnpvaj_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xmfrktzfjjamfpjnpvaj_ind_5').style.textDecoration = 'none';document.getElementById('_fs_xmfrktzfjjamfpjnpvaj_ind_5').style.opacity = 0;document.getElementById('_fb_xmfrktzfjjamfpjnpvaj_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"48.53970474002178%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"47.47454936473076%\" y=\"40\" height=\"20\" width=\"1.0651553752910203%\" onmouseover=\"document.getElementById('_tp_xmfrktzfjjamfpjnpvaj_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_xmfrktzfjjamfpjnpvaj_ind_4').style.opacity = 1;document.getElementById('_fb_xmfrktzfjjamfpjnpvaj_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xmfrktzfjjamfpjnpvaj_ind_4').style.textDecoration = 'none';document.getElementById('_fs_xmfrktzfjjamfpjnpvaj_ind_4').style.opacity = 0;document.getElementById('_fb_xmfrktzfjjamfpjnpvaj_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"47.47454936473076%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"46.55831673193769%\" y=\"40\" height=\"20\" width=\"0.9162326327930757%\" onmouseover=\"document.getElementById('_tp_xmfrktzfjjamfpjnpvaj_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_xmfrktzfjjamfpjnpvaj_ind_2').style.opacity = 1;document.getElementById('_fb_xmfrktzfjjamfpjnpvaj_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xmfrktzfjjamfpjnpvaj_ind_2').style.textDecoration = 'none';document.getElementById('_fs_xmfrktzfjjamfpjnpvaj_ind_2').style.opacity = 0;document.getElementById('_fb_xmfrktzfjjamfpjnpvaj_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"46.55831673193769%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"45.71137183395674%\" y=\"40\" height=\"20\" width=\"0.8469448979809471%\" onmouseover=\"document.getElementById('_tp_xmfrktzfjjamfpjnpvaj_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_xmfrktzfjjamfpjnpvaj_ind_1').style.opacity = 1;document.getElementById('_fb_xmfrktzfjjamfpjnpvaj_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xmfrktzfjjamfpjnpvaj_ind_1').style.textDecoration = 'none';document.getElementById('_fs_xmfrktzfjjamfpjnpvaj_ind_1').style.opacity = 0;document.getElementById('_fb_xmfrktzfjjamfpjnpvaj_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"45.71137183395674%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"45.31063185803158%\" y=\"40\" height=\"20\" width=\"0.40073997592516264%\" onmouseover=\"document.getElementById('_tp_xmfrktzfjjamfpjnpvaj_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_xmfrktzfjjamfpjnpvaj_ind_3').style.opacity = 1;document.getElementById('_fb_xmfrktzfjjamfpjnpvaj_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xmfrktzfjjamfpjnpvaj_ind_3').style.textDecoration = 'none';document.getElementById('_fs_xmfrktzfjjamfpjnpvaj_ind_3').style.opacity = 0;document.getElementById('_fb_xmfrktzfjjamfpjnpvaj_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"45.3106311689688%\" y=\"40\" height=\"20\" width=\"6.890627801681148e-07%\" onmouseover=\"document.getElementById('_tp_xmfrktzfjjamfpjnpvaj_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_xmfrktzfjjamfpjnpvaj_ind_6').style.opacity = 1;document.getElementById('_fb_xmfrktzfjjamfpjnpvaj_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xmfrktzfjjamfpjnpvaj_ind_6').style.textDecoration = 'none';document.getElementById('_fs_xmfrktzfjjamfpjnpvaj_ind_6').style.opacity = 0;document.getElementById('_fb_xmfrktzfjjamfpjnpvaj_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"85.02552945606503%\" width=\"1.1585923285827616e-08%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"85.02552945606503%\" x2=\"85.02552946765094%\" y1=\"60\" y2=\"60\" id=\"_fb_xmfrktzfjjamfpjnpvaj_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"85.02552946185799%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_xmfrktzfjjamfpjnpvaj_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"85.02552945606503%\" y=\"40\" height=\"20\" width=\"1.158591089733818e-08%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><rect transform=\"translate(0,0)\" x=\"85.02552945606503%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"85.02552946765094%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><rect x=\"85.02552945606503%\" y=\"40\" height=\"20\" width=\"1.158591089733818e-08%\" onmouseover=\"document.getElementById('_tp_xmfrktzfjjamfpjnpvaj_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_xmfrktzfjjamfpjnpvaj_ind_0').style.opacity = 1;document.getElementById('_fb_xmfrktzfjjamfpjnpvaj_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_xmfrktzfjjamfpjnpvaj_ind_0').style.textDecoration = 'none';document.getElementById('_fs_xmfrktzfjjamfpjnpvaj_ind_0').style.opacity = 0;document.getElementById('_fb_xmfrktzfjjamfpjnpvaj_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_xmfrktzfjjamfpjnpvaj_ind_0'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xmfrktzfjjamfpjnpvaj_ind_0').style.opacity = 1; document.getElementById('_fs_xmfrktzfjjamfpjnpvaj_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xmfrktzfjjamfpjnpvaj_ind_0').style.opacity = 0; document.getElementById('_fs_xmfrktzfjjamfpjnpvaj_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.16</div\n",
|
|
" ><div id='_tp_xmfrktzfjjamfpjnpvaj_ind_1'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.014656367597544035); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xmfrktzfjjamfpjnpvaj_ind_1').style.opacity = 1; document.getElementById('_fs_xmfrktzfjjamfpjnpvaj_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xmfrktzfjjamfpjnpvaj_ind_1').style.opacity = 0; document.getElementById('_fs_xmfrktzfjjamfpjnpvaj_ind_1').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.173</div\n",
|
|
" ><div id='_tp_xmfrktzfjjamfpjnpvaj_ind_2'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.02253911665676371); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xmfrktzfjjamfpjnpvaj_ind_2').style.opacity = 1; document.getElementById('_fs_xmfrktzfjjamfpjnpvaj_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xmfrktzfjjamfpjnpvaj_ind_2').style.opacity = 0; document.getElementById('_fs_xmfrktzfjjamfpjnpvaj_ind_2').style.opacity = 0;\"\n",
|
|
" >didn</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.076</div\n",
|
|
" ><div id='_tp_xmfrktzfjjamfpjnpvaj_ind_3'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xmfrktzfjjamfpjnpvaj_ind_3').style.opacity = 1; document.getElementById('_fs_xmfrktzfjjamfpjnpvaj_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xmfrktzfjjamfpjnpvaj_ind_3').style.opacity = 0; document.getElementById('_fs_xmfrktzfjjamfpjnpvaj_ind_3').style.opacity = 0;\"\n",
|
|
" >t </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.201</div\n",
|
|
" ><div id='_tp_xmfrktzfjjamfpjnpvaj_ind_4'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.02253911665676371); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xmfrktzfjjamfpjnpvaj_ind_4').style.opacity = 1; document.getElementById('_fs_xmfrktzfjjamfpjnpvaj_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xmfrktzfjjamfpjnpvaj_ind_4').style.opacity = 0; document.getElementById('_fs_xmfrktzfjjamfpjnpvaj_ind_4').style.opacity = 0;\"\n",
|
|
" >feel </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>6.901</div\n",
|
|
" ><div id='_tp_xmfrktzfjjamfpjnpvaj_ind_5'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 1.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xmfrktzfjjamfpjnpvaj_ind_5').style.opacity = 1; document.getElementById('_fs_xmfrktzfjjamfpjnpvaj_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xmfrktzfjjamfpjnpvaj_ind_5').style.opacity = 0; document.getElementById('_fs_xmfrktzfjjamfpjnpvaj_ind_5').style.opacity = 0;\"\n",
|
|
" >humiliated</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_xmfrktzfjjamfpjnpvaj_ind_6'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_xmfrktzfjjamfpjnpvaj_ind_6').style.opacity = 1; document.getElementById('_fs_xmfrktzfjjamfpjnpvaj_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_xmfrktzfjjamfpjnpvaj_ind_6').style.opacity = 0; document.getElementById('_fs_xmfrktzfjjamfpjnpvaj_ind_6').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_bwovfuqhtsyfngeozrqz_output_0_zoom' style='display: none;'><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"51.44671232318674%\" y1=\"33\" x2=\"51.44671232318674%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"51.44671232318674%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">2</text><line x1=\"40.352910306719245%\" y1=\"33\" x2=\"40.352910306719245%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"40.352910306719245%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">1</text><line x1=\"29.25910829025175%\" y1=\"33\" x2=\"29.25910829025175%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"29.25910829025175%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0</text><line x1=\"18.165306273784257%\" y1=\"33\" x2=\"18.165306273784257%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"18.165306273784257%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1</text><line x1=\"62.54051433965424%\" y1=\"33\" x2=\"62.54051433965424%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"62.54051433965424%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">3</text><line x1=\"73.63431635612173%\" y1=\"33\" x2=\"73.63431635612173%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"73.63431635612173%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">4</text><line x1=\"84.72811837258922%\" y1=\"33\" x2=\"84.72811837258922%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"84.72811837258922%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">5</text><line x1=\"8.333333348399105%\" y1=\"33\" x2=\"8.333333348399105%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"8.333333348399105%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1.88626</text><text x=\"8.333333348399105%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1.88626</text><text x=\"8.333333348399105%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"91.66666654066286%\" y1=\"33\" x2=\"91.66666654066286%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"91.66666654066286%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">5.62544</text><text x=\"91.66666654066286%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">5.62544</text><text x=\"91.66666654066286%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">sadness</tspan>(inputs)</text><rect x=\"8.333333324088498%\" width=\"83.33333321657436%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"15.108862797490726%\" x2=\"91.66666654066286%\" y1=\"60\" y2=\"60\" id=\"_fb_hkyotepduxtffhmkpngt_ind_5\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"53.387764669076795%\" y=\"71\" font-size=\"12px\" id=\"_fs_hkyotepduxtffhmkpngt_ind_5\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">6.901</text><svg x=\"15.108862797490726%\" y=\"40\" height=\"20\" width=\"76.55780374317213%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">humiliated</text> </svg></svg><line x1=\"12.873859016922282%\" x2=\"15.108862797490726%\" y1=\"60\" y2=\"60\" id=\"_fb_hkyotepduxtffhmkpngt_ind_4\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"13.991360907206504%\" y=\"71\" font-size=\"12px\" id=\"_fs_hkyotepduxtffhmkpngt_ind_4\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.201</text><svg x=\"12.873859016922282%\" y=\"40\" height=\"20\" width=\"2.2350037805684444%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"10.951338185054702%\" x2=\"12.873859016922282%\" y1=\"60\" y2=\"60\" id=\"_fb_hkyotepduxtffhmkpngt_ind_2\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"11.912598600988492%\" y=\"71\" font-size=\"12px\" id=\"_fs_hkyotepduxtffhmkpngt_ind_2\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.173</text><svg x=\"10.951338185054702%\" y=\"40\" height=\"20\" width=\"1.9225208318675797%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">didn</text> </svg></svg><line x1=\"9.174203043241796%\" x2=\"10.951338185054702%\" y1=\"60\" y2=\"60\" id=\"_fb_hkyotepduxtffhmkpngt_ind_1\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"10.06277061414825%\" y=\"71\" font-size=\"12px\" id=\"_fs_hkyotepduxtffhmkpngt_ind_1\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.16</text><svg x=\"9.174203043241796%\" y=\"40\" height=\"20\" width=\"1.7771351418129058%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"8.333334769941342%\" x2=\"9.174203043241796%\" y1=\"60\" y2=\"60\" id=\"_fb_hkyotepduxtffhmkpngt_ind_3\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.753768906591569%\" y=\"71\" font-size=\"12px\" id=\"_fs_hkyotepduxtffhmkpngt_ind_3\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.076</text><svg x=\"8.333334769941342%\" y=\"40\" height=\"20\" width=\"0.8408682733004547%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">t</text> </svg></svg><line x1=\"8.3333333240885%\" x2=\"8.333334769941342%\" y1=\"60\" y2=\"60\" id=\"_fb_hkyotepduxtffhmkpngt_ind_6\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.33333404701492%\" y=\"71\" font-size=\"12px\" id=\"_fs_hkyotepduxtffhmkpngt_ind_6\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"8.3333333240885%\" y=\"40\" height=\"20\" width=\"1.4458528418970218e-06%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"15.108862797490726%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"15.108862797490726%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"15.108862797490726%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"15.108862797490726%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"15.108862797490726%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"15.108862797490726%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"15.108862797490726%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"15.108862797490726%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"12.873859016922282%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"12.873859016922282%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"12.873859016922282%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"12.873859016922282%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"12.873859016922282%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"12.873859016922282%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"12.873859016922282%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"12.873859016922282%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"10.951338185054702%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"10.951338185054702%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"10.951338185054702%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"10.951338185054702%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"10.951338185054702%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"10.951338185054702%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"10.951338185054702%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"10.951338185054702%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"9.174203043241796%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"9.174203043241796%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"9.174203043241796%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"9.174203043241796%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"9.174203043241796%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"9.174203043241796%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"9.174203043241796%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"9.174203043241796%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.333334769941342%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.333334769941342%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.333334769941342%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.333334769941342%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.333334769941342%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.333334769941342%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.333334769941342%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.333334769941342%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"91.66666654066286%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.333333324088498%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"91.66666654066286%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"15.108862797490726%\" y=\"40\" height=\"20\" width=\"76.55780374317213%\" onmouseover=\"document.getElementById('_tp_hkyotepduxtffhmkpngt_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_hkyotepduxtffhmkpngt_ind_5').style.opacity = 1;document.getElementById('_fb_hkyotepduxtffhmkpngt_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_hkyotepduxtffhmkpngt_ind_5').style.textDecoration = 'none';document.getElementById('_fs_hkyotepduxtffhmkpngt_ind_5').style.opacity = 0;document.getElementById('_fb_hkyotepduxtffhmkpngt_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"15.108862797490726%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"12.873859016922282%\" y=\"40\" height=\"20\" width=\"2.2350037805684444%\" onmouseover=\"document.getElementById('_tp_hkyotepduxtffhmkpngt_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_hkyotepduxtffhmkpngt_ind_4').style.opacity = 1;document.getElementById('_fb_hkyotepduxtffhmkpngt_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_hkyotepduxtffhmkpngt_ind_4').style.textDecoration = 'none';document.getElementById('_fs_hkyotepduxtffhmkpngt_ind_4').style.opacity = 0;document.getElementById('_fb_hkyotepduxtffhmkpngt_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"12.873859016922282%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"10.951338185054702%\" y=\"40\" height=\"20\" width=\"1.9225208318675797%\" onmouseover=\"document.getElementById('_tp_hkyotepduxtffhmkpngt_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_hkyotepduxtffhmkpngt_ind_2').style.opacity = 1;document.getElementById('_fb_hkyotepduxtffhmkpngt_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_hkyotepduxtffhmkpngt_ind_2').style.textDecoration = 'none';document.getElementById('_fs_hkyotepduxtffhmkpngt_ind_2').style.opacity = 0;document.getElementById('_fb_hkyotepduxtffhmkpngt_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"10.951338185054702%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"9.174203043241796%\" y=\"40\" height=\"20\" width=\"1.7771351418129058%\" onmouseover=\"document.getElementById('_tp_hkyotepduxtffhmkpngt_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_hkyotepduxtffhmkpngt_ind_1').style.opacity = 1;document.getElementById('_fb_hkyotepduxtffhmkpngt_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_hkyotepduxtffhmkpngt_ind_1').style.textDecoration = 'none';document.getElementById('_fs_hkyotepduxtffhmkpngt_ind_1').style.opacity = 0;document.getElementById('_fb_hkyotepduxtffhmkpngt_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"9.174203043241796%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.333334769941342%\" y=\"40\" height=\"20\" width=\"0.8408682733004547%\" onmouseover=\"document.getElementById('_tp_hkyotepduxtffhmkpngt_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_hkyotepduxtffhmkpngt_ind_3').style.opacity = 1;document.getElementById('_fb_hkyotepduxtffhmkpngt_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_hkyotepduxtffhmkpngt_ind_3').style.textDecoration = 'none';document.getElementById('_fs_hkyotepduxtffhmkpngt_ind_3').style.opacity = 0;document.getElementById('_fb_hkyotepduxtffhmkpngt_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"8.3333333240885%\" y=\"40\" height=\"20\" width=\"1.4458528418970218e-06%\" onmouseover=\"document.getElementById('_tp_hkyotepduxtffhmkpngt_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_hkyotepduxtffhmkpngt_ind_6').style.opacity = 1;document.getElementById('_fb_hkyotepduxtffhmkpngt_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_hkyotepduxtffhmkpngt_ind_6').style.textDecoration = 'none';document.getElementById('_fs_hkyotepduxtffhmkpngt_ind_6').style.opacity = 0;document.getElementById('_fb_hkyotepduxtffhmkpngt_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"91.66666654066286%\" width=\"2.4310615095122612e-08%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"91.66666654066286%\" x2=\"91.66666656497345%\" y1=\"60\" y2=\"60\" id=\"_fb_hkyotepduxtffhmkpngt_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.66666655281816%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_hkyotepduxtffhmkpngt_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"91.66666654066286%\" y=\"40\" height=\"20\" width=\"2.431059442642436e-08%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><rect transform=\"translate(0,0)\" x=\"91.66666654066286%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66666656497345%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><rect x=\"91.66666654066286%\" y=\"40\" height=\"20\" width=\"2.431059442642436e-08%\" onmouseover=\"document.getElementById('_tp_hkyotepduxtffhmkpngt_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_hkyotepduxtffhmkpngt_ind_0').style.opacity = 1;document.getElementById('_fb_hkyotepduxtffhmkpngt_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_hkyotepduxtffhmkpngt_ind_0').style.textDecoration = 'none';document.getElementById('_fs_hkyotepduxtffhmkpngt_ind_0').style.opacity = 0;document.getElementById('_fb_hkyotepduxtffhmkpngt_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_hkyotepduxtffhmkpngt_ind_0'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_hkyotepduxtffhmkpngt_ind_0').style.opacity = 1; document.getElementById('_fs_hkyotepduxtffhmkpngt_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_hkyotepduxtffhmkpngt_ind_0').style.opacity = 0; document.getElementById('_fs_hkyotepduxtffhmkpngt_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.16</div\n",
|
|
" ><div id='_tp_hkyotepduxtffhmkpngt_ind_1'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.014656367597544035); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_hkyotepduxtffhmkpngt_ind_1').style.opacity = 1; document.getElementById('_fs_hkyotepduxtffhmkpngt_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_hkyotepduxtffhmkpngt_ind_1').style.opacity = 0; document.getElementById('_fs_hkyotepduxtffhmkpngt_ind_1').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.173</div\n",
|
|
" ><div id='_tp_hkyotepduxtffhmkpngt_ind_2'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.02253911665676371); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_hkyotepduxtffhmkpngt_ind_2').style.opacity = 1; document.getElementById('_fs_hkyotepduxtffhmkpngt_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_hkyotepduxtffhmkpngt_ind_2').style.opacity = 0; document.getElementById('_fs_hkyotepduxtffhmkpngt_ind_2').style.opacity = 0;\"\n",
|
|
" >didn</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.076</div\n",
|
|
" ><div id='_tp_hkyotepduxtffhmkpngt_ind_3'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_hkyotepduxtffhmkpngt_ind_3').style.opacity = 1; document.getElementById('_fs_hkyotepduxtffhmkpngt_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_hkyotepduxtffhmkpngt_ind_3').style.opacity = 0; document.getElementById('_fs_hkyotepduxtffhmkpngt_ind_3').style.opacity = 0;\"\n",
|
|
" >t </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.201</div\n",
|
|
" ><div id='_tp_hkyotepduxtffhmkpngt_ind_4'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.02253911665676371); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_hkyotepduxtffhmkpngt_ind_4').style.opacity = 1; document.getElementById('_fs_hkyotepduxtffhmkpngt_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_hkyotepduxtffhmkpngt_ind_4').style.opacity = 0; document.getElementById('_fs_hkyotepduxtffhmkpngt_ind_4').style.opacity = 0;\"\n",
|
|
" >feel </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>6.901</div\n",
|
|
" ><div id='_tp_hkyotepduxtffhmkpngt_ind_5'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 1.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_hkyotepduxtffhmkpngt_ind_5').style.opacity = 1; document.getElementById('_fs_hkyotepduxtffhmkpngt_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_hkyotepduxtffhmkpngt_ind_5').style.opacity = 0; document.getElementById('_fs_hkyotepduxtffhmkpngt_ind_5').style.opacity = 0;\"\n",
|
|
" >humiliated</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_hkyotepduxtffhmkpngt_ind_6'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_hkyotepduxtffhmkpngt_ind_6').style.opacity = 1; document.getElementById('_fs_hkyotepduxtffhmkpngt_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_hkyotepduxtffhmkpngt_ind_6').style.opacity = 0; document.getElementById('_fs_hkyotepduxtffhmkpngt_ind_6').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_bwovfuqhtsyfngeozrqz_output_1' style='display: none';><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"49.99634084343776%\" y1=\"33\" x2=\"49.99634084343776%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"49.99634084343776%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1</text><line x1=\"34.135128947971666%\" y1=\"33\" x2=\"34.135128947971666%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"34.135128947971666%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"18.273917052505578%\" y1=\"33\" x2=\"18.273917052505578%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"18.273917052505578%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7</text><line x1=\"65.85755273890385%\" y1=\"33\" x2=\"65.85755273890385%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"65.85755273890385%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">2</text><line x1=\"81.71876463436993%\" y1=\"33\" x2=\"81.71876463436993%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"81.71876463436993%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">5</text><line x1=\"48.676943462303875%\" y1=\"33\" x2=\"48.676943462303875%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"48.676943462303875%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1.24955</text><text x=\"48.676943462303875%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1.24955</text><text x=\"48.676943462303875%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"16.731665514951388%\" y1=\"33\" x2=\"16.731665514951388%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"16.731665514951388%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7.2917</text><text x=\"16.731665514951388%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7.2917</text><text x=\"16.731665514951388%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">joy</tspan>(inputs)</text><rect x=\"12.773857970286736%\" width=\"3.957807544664653%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"14.031257245573855%\" x2=\"16.731665514951388%\" y1=\"60\" y2=\"60\" id=\"_fb_gjdghxzbjoljznvohngy_ind_4\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"15.381461380262621%\" y=\"71\" font-size=\"12px\" id=\"_fs_gjdghxzbjoljznvohngy_ind_4\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.511</text><svg x=\"14.031257245573855%\" y=\"40\" height=\"20\" width=\"2.700408269377533%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"13.29020866963331%\" x2=\"14.031257245573855%\" y1=\"60\" y2=\"60\" id=\"_fb_gjdghxzbjoljznvohngy_ind_3\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"13.660732957603582%\" y=\"71\" font-size=\"12px\" id=\"_fs_gjdghxzbjoljznvohngy_ind_3\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.14</text><svg x=\"13.29020866963331%\" y=\"40\" height=\"20\" width=\"0.7410485759405443%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">t</text> </svg></svg><line x1=\"12.773860036749296%\" x2=\"13.29020866963331%\" y1=\"60\" y2=\"60\" id=\"_fb_gjdghxzbjoljznvohngy_ind_2\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"13.032034353191303%\" y=\"71\" font-size=\"12px\" id=\"_fs_gjdghxzbjoljznvohngy_ind_2\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.098</text><svg x=\"12.773860036749296%\" y=\"40\" height=\"20\" width=\"0.5163486328840143%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">didn</text> </svg></svg><line x1=\"12.773858899231659%\" x2=\"12.773860036749296%\" y1=\"60\" y2=\"60\" id=\"_fb_gjdghxzbjoljznvohngy_ind_6\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"12.773859467990476%\" y=\"71\" font-size=\"12px\" id=\"_fs_gjdghxzbjoljznvohngy_ind_6\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"12.773858899231659%\" y=\"40\" height=\"20\" width=\"1.137517637417318e-06%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><line x1=\"12.773857970286727%\" x2=\"12.773858899231659%\" y1=\"60\" y2=\"60\" id=\"_fb_gjdghxzbjoljznvohngy_ind_0\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"12.773858434759193%\" y=\"71\" font-size=\"12px\" id=\"_fs_gjdghxzbjoljznvohngy_ind_0\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"12.773857970286727%\" y=\"40\" height=\"20\" width=\"9.289449316440823e-07%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"14.031257245573855%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"14.031257245573855%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"14.031257245573855%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"14.031257245573855%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"14.031257245573855%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"14.031257245573855%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"14.031257245573855%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"14.031257245573855%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"13.29020866963331%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"13.29020866963331%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"13.29020866963331%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"13.29020866963331%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"13.29020866963331%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"13.29020866963331%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"13.29020866963331%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"13.29020866963331%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"12.773860036749296%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"12.773860036749296%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"12.773860036749296%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"12.773860036749296%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"12.773860036749296%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"12.773860036749296%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"12.773860036749296%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"12.773860036749296%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"12.773858899231659%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"12.773858899231659%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"12.773858899231659%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"12.773858899231659%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"12.773858899231659%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"12.773858899231659%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"12.773858899231659%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"12.773858899231659%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"16.731665514951388%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"12.773857970286736%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"16.731665514951388%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"14.031257245573855%\" y=\"40\" height=\"20\" width=\"2.700408269377533%\" onmouseover=\"document.getElementById('_tp_gjdghxzbjoljznvohngy_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_gjdghxzbjoljznvohngy_ind_4').style.opacity = 1;document.getElementById('_fb_gjdghxzbjoljznvohngy_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gjdghxzbjoljznvohngy_ind_4').style.textDecoration = 'none';document.getElementById('_fs_gjdghxzbjoljznvohngy_ind_4').style.opacity = 0;document.getElementById('_fb_gjdghxzbjoljznvohngy_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"14.031257245573855%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"13.29020866963331%\" y=\"40\" height=\"20\" width=\"0.7410485759405443%\" onmouseover=\"document.getElementById('_tp_gjdghxzbjoljznvohngy_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_gjdghxzbjoljznvohngy_ind_3').style.opacity = 1;document.getElementById('_fb_gjdghxzbjoljznvohngy_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gjdghxzbjoljznvohngy_ind_3').style.textDecoration = 'none';document.getElementById('_fs_gjdghxzbjoljznvohngy_ind_3').style.opacity = 0;document.getElementById('_fb_gjdghxzbjoljznvohngy_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"13.29020866963331%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"12.773860036749296%\" y=\"40\" height=\"20\" width=\"0.5163486328840143%\" onmouseover=\"document.getElementById('_tp_gjdghxzbjoljznvohngy_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_gjdghxzbjoljznvohngy_ind_2').style.opacity = 1;document.getElementById('_fb_gjdghxzbjoljznvohngy_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gjdghxzbjoljznvohngy_ind_2').style.textDecoration = 'none';document.getElementById('_fs_gjdghxzbjoljznvohngy_ind_2').style.opacity = 0;document.getElementById('_fb_gjdghxzbjoljznvohngy_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"12.773860036749296%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"12.773858899231659%\" y=\"40\" height=\"20\" width=\"1.137517637417318e-06%\" onmouseover=\"document.getElementById('_tp_gjdghxzbjoljznvohngy_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_gjdghxzbjoljznvohngy_ind_6').style.opacity = 1;document.getElementById('_fb_gjdghxzbjoljznvohngy_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gjdghxzbjoljznvohngy_ind_6').style.textDecoration = 'none';document.getElementById('_fs_gjdghxzbjoljznvohngy_ind_6').style.opacity = 0;document.getElementById('_fb_gjdghxzbjoljznvohngy_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"12.773857970286727%\" y=\"40\" height=\"20\" width=\"9.289449316440823e-07%\" onmouseover=\"document.getElementById('_tp_gjdghxzbjoljznvohngy_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_gjdghxzbjoljznvohngy_ind_0').style.opacity = 1;document.getElementById('_fb_gjdghxzbjoljznvohngy_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gjdghxzbjoljznvohngy_ind_0').style.textDecoration = 'none';document.getElementById('_fs_gjdghxzbjoljznvohngy_ind_0').style.opacity = 0;document.getElementById('_fb_gjdghxzbjoljznvohngy_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"16.731665514951388%\" width=\"35.90308549201714%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"16.731665514951388%\" x2=\"52.34382796262315%\" y1=\"60\" y2=\"60\" id=\"_fb_gjdghxzbjoljznvohngy_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"34.53774673878727%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_gjdghxzbjoljznvohngy_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-6.736</text><svg x=\"16.731665514951388%\" y=\"40\" height=\"20\" width=\"35.612162447671764%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">humiliated</text> </svg></svg><line x1=\"52.34382796262315%\" x2=\"52.63475100696852%\" y1=\"60\" y2=\"60\" id=\"_fb_gjdghxzbjoljznvohngy_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"52.48928948479583%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_gjdghxzbjoljznvohngy_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.055</text><svg x=\"52.34382796262315%\" y=\"40\" height=\"20\" width=\"0.2909230443453694%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"52.34382796262315%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"52.34382796262315%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"52.34382796262315%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"52.34382796262315%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"52.34382796262315%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"52.34382796262315%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"52.34382796262315%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"52.34382796262315%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"16.731665514951388%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"52.63475100696852%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"52.34382796262315%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"16.731665514951388%\" y=\"40\" height=\"20\" width=\"35.612162447671764%\" onmouseover=\"document.getElementById('_tp_gjdghxzbjoljznvohngy_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_gjdghxzbjoljznvohngy_ind_5').style.opacity = 1;document.getElementById('_fb_gjdghxzbjoljznvohngy_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gjdghxzbjoljznvohngy_ind_5').style.textDecoration = 'none';document.getElementById('_fs_gjdghxzbjoljznvohngy_ind_5').style.opacity = 0;document.getElementById('_fb_gjdghxzbjoljznvohngy_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"52.34382796262315%\" y=\"40\" height=\"20\" width=\"0.2909230443453694%\" onmouseover=\"document.getElementById('_tp_gjdghxzbjoljznvohngy_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_gjdghxzbjoljznvohngy_ind_1').style.opacity = 1;document.getElementById('_fb_gjdghxzbjoljznvohngy_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gjdghxzbjoljznvohngy_ind_1').style.textDecoration = 'none';document.getElementById('_fs_gjdghxzbjoljznvohngy_ind_1').style.opacity = 0;document.getElementById('_fb_gjdghxzbjoljznvohngy_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_gjdghxzbjoljznvohngy_ind_0'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gjdghxzbjoljznvohngy_ind_0').style.opacity = 1; document.getElementById('_fs_gjdghxzbjoljznvohngy_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gjdghxzbjoljznvohngy_ind_0').style.opacity = 0; document.getElementById('_fs_gjdghxzbjoljznvohngy_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.055</div\n",
|
|
" ><div id='_tp_gjdghxzbjoljznvohngy_ind_1'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gjdghxzbjoljznvohngy_ind_1').style.opacity = 1; document.getElementById('_fs_gjdghxzbjoljznvohngy_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gjdghxzbjoljznvohngy_ind_1').style.opacity = 0; document.getElementById('_fs_gjdghxzbjoljznvohngy_ind_1').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.098</div\n",
|
|
" ><div id='_tp_gjdghxzbjoljznvohngy_ind_2'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gjdghxzbjoljznvohngy_ind_2').style.opacity = 1; document.getElementById('_fs_gjdghxzbjoljznvohngy_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gjdghxzbjoljznvohngy_ind_2').style.opacity = 0; document.getElementById('_fs_gjdghxzbjoljznvohngy_ind_2').style.opacity = 0;\"\n",
|
|
" >didn</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.14</div\n",
|
|
" ><div id='_tp_gjdghxzbjoljznvohngy_ind_3'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.014656367597544035); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gjdghxzbjoljznvohngy_ind_3').style.opacity = 1; document.getElementById('_fs_gjdghxzbjoljznvohngy_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gjdghxzbjoljznvohngy_ind_3').style.opacity = 0; document.getElementById('_fs_gjdghxzbjoljznvohngy_ind_3').style.opacity = 0;\"\n",
|
|
" >t </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.511</div\n",
|
|
" ><div id='_tp_gjdghxzbjoljznvohngy_ind_4'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.06983561101208159); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gjdghxzbjoljznvohngy_ind_4').style.opacity = 1; document.getElementById('_fs_gjdghxzbjoljznvohngy_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gjdghxzbjoljznvohngy_ind_4').style.opacity = 0; document.getElementById('_fs_gjdghxzbjoljznvohngy_ind_4').style.opacity = 0;\"\n",
|
|
" >feel </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-6.736</div\n",
|
|
" ><div id='_tp_gjdghxzbjoljznvohngy_ind_5'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.9763517528223411); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gjdghxzbjoljznvohngy_ind_5').style.opacity = 1; document.getElementById('_fs_gjdghxzbjoljznvohngy_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gjdghxzbjoljznvohngy_ind_5').style.opacity = 0; document.getElementById('_fs_gjdghxzbjoljznvohngy_ind_5').style.opacity = 0;\"\n",
|
|
" >humiliated</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_gjdghxzbjoljznvohngy_ind_6'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gjdghxzbjoljznvohngy_ind_6').style.opacity = 1; document.getElementById('_fs_gjdghxzbjoljznvohngy_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gjdghxzbjoljznvohngy_ind_6').style.opacity = 0; document.getElementById('_fs_gjdghxzbjoljznvohngy_ind_6').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_bwovfuqhtsyfngeozrqz_output_1_zoom' style='display: none;'><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"52.991286953042874%\" y1=\"33\" x2=\"52.991286953042874%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"52.991286953042874%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"41.93811716013177%\" y1=\"33\" x2=\"41.93811716013177%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"41.93811716013177%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-5</text><line x1=\"30.884947367220665%\" y1=\"33\" x2=\"30.884947367220665%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"30.884947367220665%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6</text><line x1=\"19.831777574309562%\" y1=\"33\" x2=\"19.831777574309562%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"19.831777574309562%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7</text><line x1=\"8.77860778139846%\" y1=\"33\" x2=\"8.77860778139846%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"8.77860778139846%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-8</text><line x1=\"64.04445674595398%\" y1=\"33\" x2=\"64.04445674595398%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"64.04445674595398%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-3</text><line x1=\"75.09762653886507%\" y1=\"33\" x2=\"75.09762653886507%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"75.09762653886507%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2</text><line x1=\"86.15079633177618%\" y1=\"33\" x2=\"86.15079633177618%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"86.15079633177618%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1</text><line x1=\"83.39245919320663%\" y1=\"33\" x2=\"83.39245919320663%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"83.39245919320663%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1.24955</text><text x=\"83.39245919320663%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1.24955</text><text x=\"83.39245919320663%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"16.60754069626165%\" y1=\"33\" x2=\"16.60754069626165%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"16.60754069626165%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7.2917</text><text x=\"16.60754069626165%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7.2917</text><text x=\"16.60754069626165%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">joy</tspan>(inputs)</text><rect x=\"8.333333324122354%\" width=\"8.274207372139296%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"10.962056988901974%\" x2=\"16.60754069626165%\" y1=\"60\" y2=\"60\" id=\"_fb_bycuxmtwfcjkbxrqkhfh_ind_4\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"13.784798842581813%\" y=\"71\" font-size=\"12px\" id=\"_fs_bycuxmtwfcjkbxrqkhfh_ind_4\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.511</text><svg x=\"10.962056988901974%\" y=\"40\" height=\"20\" width=\"5.645483707359677%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"9.412818042600428%\" x2=\"10.962056988901974%\" y1=\"60\" y2=\"60\" id=\"_fb_bycuxmtwfcjkbxrqkhfh_ind_3\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"10.187437515751201%\" y=\"71\" font-size=\"12px\" id=\"_fs_bycuxmtwfcjkbxrqkhfh_ind_3\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.14</text><svg x=\"9.412818042600428%\" y=\"40\" height=\"20\" width=\"1.5492389463015463%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">t</text> </svg></svg><line x1=\"8.333337644276774%\" x2=\"9.412818042600428%\" y1=\"60\" y2=\"60\" id=\"_fb_bycuxmtwfcjkbxrqkhfh_ind_2\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.873077843438601%\" y=\"71\" font-size=\"12px\" id=\"_fs_bycuxmtwfcjkbxrqkhfh_ind_2\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.098</text><svg x=\"8.333337644276774%\" y=\"40\" height=\"20\" width=\"1.0794803983236534%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">didn</text> </svg></svg><line x1=\"8.333335266178114%\" x2=\"8.333337644276774%\" y1=\"60\" y2=\"60\" id=\"_fb_bycuxmtwfcjkbxrqkhfh_ind_6\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.333336455227444%\" y=\"71\" font-size=\"12px\" id=\"_fs_bycuxmtwfcjkbxrqkhfh_ind_6\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"8.333335266178114%\" y=\"40\" height=\"20\" width=\"2.37809866021621e-06%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><line x1=\"8.333333324122334%\" x2=\"8.333335266178114%\" y1=\"60\" y2=\"60\" id=\"_fb_bycuxmtwfcjkbxrqkhfh_ind_0\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.333334295150223%\" y=\"71\" font-size=\"12px\" id=\"_fs_bycuxmtwfcjkbxrqkhfh_ind_0\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"8.333333324122334%\" y=\"40\" height=\"20\" width=\"1.942055780190799e-06%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"10.962056988901974%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"10.962056988901974%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"10.962056988901974%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"10.962056988901974%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"10.962056988901974%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"10.962056988901974%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"10.962056988901974%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"10.962056988901974%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"9.412818042600428%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"9.412818042600428%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"9.412818042600428%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"9.412818042600428%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"9.412818042600428%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"9.412818042600428%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"9.412818042600428%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"9.412818042600428%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.333337644276774%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.333337644276774%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.333337644276774%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.333337644276774%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.333337644276774%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.333337644276774%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.333337644276774%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.333337644276774%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.333335266178114%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.333335266178114%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.333335266178114%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.333335266178114%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.333335266178114%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.333335266178114%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.333335266178114%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.333335266178114%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"16.60754069626165%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.333333324122354%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"16.60754069626165%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"10.962056988901974%\" y=\"40\" height=\"20\" width=\"5.645483707359677%\" onmouseover=\"document.getElementById('_tp_bycuxmtwfcjkbxrqkhfh_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_bycuxmtwfcjkbxrqkhfh_ind_4').style.opacity = 1;document.getElementById('_fb_bycuxmtwfcjkbxrqkhfh_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_bycuxmtwfcjkbxrqkhfh_ind_4').style.textDecoration = 'none';document.getElementById('_fs_bycuxmtwfcjkbxrqkhfh_ind_4').style.opacity = 0;document.getElementById('_fb_bycuxmtwfcjkbxrqkhfh_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"10.962056988901974%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"9.412818042600428%\" y=\"40\" height=\"20\" width=\"1.5492389463015463%\" onmouseover=\"document.getElementById('_tp_bycuxmtwfcjkbxrqkhfh_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_bycuxmtwfcjkbxrqkhfh_ind_3').style.opacity = 1;document.getElementById('_fb_bycuxmtwfcjkbxrqkhfh_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_bycuxmtwfcjkbxrqkhfh_ind_3').style.textDecoration = 'none';document.getElementById('_fs_bycuxmtwfcjkbxrqkhfh_ind_3').style.opacity = 0;document.getElementById('_fb_bycuxmtwfcjkbxrqkhfh_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"9.412818042600428%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.333337644276774%\" y=\"40\" height=\"20\" width=\"1.0794803983236534%\" onmouseover=\"document.getElementById('_tp_bycuxmtwfcjkbxrqkhfh_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_bycuxmtwfcjkbxrqkhfh_ind_2').style.opacity = 1;document.getElementById('_fb_bycuxmtwfcjkbxrqkhfh_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_bycuxmtwfcjkbxrqkhfh_ind_2').style.textDecoration = 'none';document.getElementById('_fs_bycuxmtwfcjkbxrqkhfh_ind_2').style.opacity = 0;document.getElementById('_fb_bycuxmtwfcjkbxrqkhfh_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"8.333337644276774%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.333335266178114%\" y=\"40\" height=\"20\" width=\"2.37809866021621e-06%\" onmouseover=\"document.getElementById('_tp_bycuxmtwfcjkbxrqkhfh_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_bycuxmtwfcjkbxrqkhfh_ind_6').style.opacity = 1;document.getElementById('_fb_bycuxmtwfcjkbxrqkhfh_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_bycuxmtwfcjkbxrqkhfh_ind_6').style.textDecoration = 'none';document.getElementById('_fs_bycuxmtwfcjkbxrqkhfh_ind_6').style.opacity = 0;document.getElementById('_fb_bycuxmtwfcjkbxrqkhfh_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"8.333333324122334%\" y=\"40\" height=\"20\" width=\"1.942055780190799e-06%\" onmouseover=\"document.getElementById('_tp_bycuxmtwfcjkbxrqkhfh_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_bycuxmtwfcjkbxrqkhfh_ind_0').style.opacity = 1;document.getElementById('_fb_bycuxmtwfcjkbxrqkhfh_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_bycuxmtwfcjkbxrqkhfh_ind_0').style.textDecoration = 'none';document.getElementById('_fs_bycuxmtwfcjkbxrqkhfh_ind_0').style.opacity = 0;document.getElementById('_fb_bycuxmtwfcjkbxrqkhfh_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"16.60754069626165%\" width=\"75.05912586908428%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"16.60754069626165%\" x2=\"91.05846175218045%\" y1=\"60\" y2=\"60\" id=\"_fb_bycuxmtwfcjkbxrqkhfh_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"53.83300122422105%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_bycuxmtwfcjkbxrqkhfh_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-6.736</text><svg x=\"16.60754069626165%\" y=\"40\" height=\"20\" width=\"74.4509210559188%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">humiliated</text> </svg></svg><line x1=\"91.05846175218045%\" x2=\"91.66666656534592%\" y1=\"60\" y2=\"60\" id=\"_fb_bycuxmtwfcjkbxrqkhfh_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.36256415876318%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_bycuxmtwfcjkbxrqkhfh_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.055</text><svg x=\"91.05846175218045%\" y=\"40\" height=\"20\" width=\"0.6082048131654716%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"91.05846175218045%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.05846175218045%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.05846175218045%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.05846175218045%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.05846175218045%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.05846175218045%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.05846175218045%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.05846175218045%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"16.60754069626165%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66666656534592%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"91.05846175218045%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"16.60754069626165%\" y=\"40\" height=\"20\" width=\"74.4509210559188%\" onmouseover=\"document.getElementById('_tp_bycuxmtwfcjkbxrqkhfh_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_bycuxmtwfcjkbxrqkhfh_ind_5').style.opacity = 1;document.getElementById('_fb_bycuxmtwfcjkbxrqkhfh_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_bycuxmtwfcjkbxrqkhfh_ind_5').style.textDecoration = 'none';document.getElementById('_fs_bycuxmtwfcjkbxrqkhfh_ind_5').style.opacity = 0;document.getElementById('_fb_bycuxmtwfcjkbxrqkhfh_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"91.05846175218045%\" y=\"40\" height=\"20\" width=\"0.6082048131654716%\" onmouseover=\"document.getElementById('_tp_bycuxmtwfcjkbxrqkhfh_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_bycuxmtwfcjkbxrqkhfh_ind_1').style.opacity = 1;document.getElementById('_fb_bycuxmtwfcjkbxrqkhfh_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_bycuxmtwfcjkbxrqkhfh_ind_1').style.textDecoration = 'none';document.getElementById('_fs_bycuxmtwfcjkbxrqkhfh_ind_1').style.opacity = 0;document.getElementById('_fb_bycuxmtwfcjkbxrqkhfh_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_bycuxmtwfcjkbxrqkhfh_ind_0'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_bycuxmtwfcjkbxrqkhfh_ind_0').style.opacity = 1; document.getElementById('_fs_bycuxmtwfcjkbxrqkhfh_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_bycuxmtwfcjkbxrqkhfh_ind_0').style.opacity = 0; document.getElementById('_fs_bycuxmtwfcjkbxrqkhfh_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.055</div\n",
|
|
" ><div id='_tp_bycuxmtwfcjkbxrqkhfh_ind_1'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_bycuxmtwfcjkbxrqkhfh_ind_1').style.opacity = 1; document.getElementById('_fs_bycuxmtwfcjkbxrqkhfh_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_bycuxmtwfcjkbxrqkhfh_ind_1').style.opacity = 0; document.getElementById('_fs_bycuxmtwfcjkbxrqkhfh_ind_1').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.098</div\n",
|
|
" ><div id='_tp_bycuxmtwfcjkbxrqkhfh_ind_2'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_bycuxmtwfcjkbxrqkhfh_ind_2').style.opacity = 1; document.getElementById('_fs_bycuxmtwfcjkbxrqkhfh_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_bycuxmtwfcjkbxrqkhfh_ind_2').style.opacity = 0; document.getElementById('_fs_bycuxmtwfcjkbxrqkhfh_ind_2').style.opacity = 0;\"\n",
|
|
" >didn</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.14</div\n",
|
|
" ><div id='_tp_bycuxmtwfcjkbxrqkhfh_ind_3'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.014656367597544035); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_bycuxmtwfcjkbxrqkhfh_ind_3').style.opacity = 1; document.getElementById('_fs_bycuxmtwfcjkbxrqkhfh_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_bycuxmtwfcjkbxrqkhfh_ind_3').style.opacity = 0; document.getElementById('_fs_bycuxmtwfcjkbxrqkhfh_ind_3').style.opacity = 0;\"\n",
|
|
" >t </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.511</div\n",
|
|
" ><div id='_tp_bycuxmtwfcjkbxrqkhfh_ind_4'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.06983561101208159); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_bycuxmtwfcjkbxrqkhfh_ind_4').style.opacity = 1; document.getElementById('_fs_bycuxmtwfcjkbxrqkhfh_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_bycuxmtwfcjkbxrqkhfh_ind_4').style.opacity = 0; document.getElementById('_fs_bycuxmtwfcjkbxrqkhfh_ind_4').style.opacity = 0;\"\n",
|
|
" >feel </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-6.736</div\n",
|
|
" ><div id='_tp_bycuxmtwfcjkbxrqkhfh_ind_5'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 1.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_bycuxmtwfcjkbxrqkhfh_ind_5').style.opacity = 1; document.getElementById('_fs_bycuxmtwfcjkbxrqkhfh_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_bycuxmtwfcjkbxrqkhfh_ind_5').style.opacity = 0; document.getElementById('_fs_bycuxmtwfcjkbxrqkhfh_ind_5').style.opacity = 0;\"\n",
|
|
" >humiliated</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_bycuxmtwfcjkbxrqkhfh_ind_6'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_bycuxmtwfcjkbxrqkhfh_ind_6').style.opacity = 1; document.getElementById('_fs_bycuxmtwfcjkbxrqkhfh_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_bycuxmtwfcjkbxrqkhfh_ind_6').style.opacity = 0; document.getElementById('_fs_bycuxmtwfcjkbxrqkhfh_ind_6').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_bwovfuqhtsyfngeozrqz_output_2' style='display: none';><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"49.99634084343776%\" y1=\"33\" x2=\"49.99634084343776%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"49.99634084343776%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1</text><line x1=\"34.135128947971666%\" y1=\"33\" x2=\"34.135128947971666%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"34.135128947971666%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"18.273917052505578%\" y1=\"33\" x2=\"18.273917052505578%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"18.273917052505578%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7</text><line x1=\"65.85755273890385%\" y1=\"33\" x2=\"65.85755273890385%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"65.85755273890385%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">2</text><line x1=\"81.71876463436993%\" y1=\"33\" x2=\"81.71876463436993%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"81.71876463436993%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">5</text><line x1=\"44.04966458376285%\" y1=\"33\" x2=\"44.04966458376285%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"44.04966458376285%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2.12476</text><text x=\"44.04966458376285%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2.12476</text><text x=\"44.04966458376285%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"16.47936992215004%\" y1=\"33\" x2=\"16.47936992215004%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"16.47936992215004%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7.33942</text><text x=\"16.47936992215004%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7.33942</text><text x=\"16.47936992215004%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">love</tspan>(inputs)</text><rect x=\"16.479369751438966%\" width=\"1.7071107418295345e-07%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"16.479369751438966%\" x2=\"16.47936992215004%\" y1=\"60\" y2=\"60\" id=\"_fb_rewwfvkbqfbikedyosmg_ind_0\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"16.479369836794504%\" y=\"71\" font-size=\"12px\" id=\"_fs_rewwfvkbqfbikedyosmg_ind_0\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"16.479369751438966%\" y=\"40\" height=\"20\" width=\"1.707110719451066e-07%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><rect transform=\"translate(-8,0)\" x=\"16.47936992215004%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"16.479369751438966%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><rect x=\"16.479369751438966%\" y=\"40\" height=\"20\" width=\"1.707110719451066e-07%\" onmouseover=\"document.getElementById('_tp_rewwfvkbqfbikedyosmg_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_rewwfvkbqfbikedyosmg_ind_0').style.opacity = 1;document.getElementById('_fb_rewwfvkbqfbikedyosmg_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rewwfvkbqfbikedyosmg_ind_0').style.textDecoration = 'none';document.getElementById('_fs_rewwfvkbqfbikedyosmg_ind_0').style.opacity = 0;document.getElementById('_fb_rewwfvkbqfbikedyosmg_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"16.47936992215004%\" width=\"27.57029483232389%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"16.47936992215004%\" x2=\"41.185510910868885%\" y1=\"60\" y2=\"60\" id=\"_fb_rewwfvkbqfbikedyosmg_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"28.832440416509463%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rewwfvkbqfbikedyosmg_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-4.673</text><svg x=\"16.47936992215004%\" y=\"40\" height=\"20\" width=\"24.706140988718847%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">humiliated</text> </svg></svg><line x1=\"41.185510910868885%\" x2=\"42.49005282394254%\" y1=\"60\" y2=\"60\" id=\"_fb_rewwfvkbqfbikedyosmg_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"41.83778186740571%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rewwfvkbqfbikedyosmg_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.247</text><svg x=\"41.185510910868885%\" y=\"40\" height=\"20\" width=\"1.3045419130736562%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">didn</text> </svg></svg><line x1=\"42.49005282394254%\" x2=\"43.100642249117335%\" y1=\"60\" y2=\"60\" id=\"_fb_rewwfvkbqfbikedyosmg_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"42.79534753652994%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rewwfvkbqfbikedyosmg_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.115</text><svg x=\"42.49005282394254%\" y=\"40\" height=\"20\" width=\"0.6105894251747941%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"43.100642249117335%\" x2=\"43.67771447553907%\" y1=\"60\" y2=\"60\" id=\"_fb_rewwfvkbqfbikedyosmg_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"43.3891783623282%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rewwfvkbqfbikedyosmg_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.109</text><svg x=\"43.100642249117335%\" y=\"40\" height=\"20\" width=\"0.5770722264217341%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">t</text> </svg></svg><line x1=\"43.67771447553907%\" x2=\"44.04966437187131%\" y1=\"60\" y2=\"60\" id=\"_fb_rewwfvkbqfbikedyosmg_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"43.86368942370519%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rewwfvkbqfbikedyosmg_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.07</text><svg x=\"43.67771447553907%\" y=\"40\" height=\"20\" width=\"0.3719498963322394%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"44.04966437187131%\" x2=\"44.04966475447393%\" y1=\"60\" y2=\"60\" id=\"_fb_rewwfvkbqfbikedyosmg_ind_6\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"44.04966456317262%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rewwfvkbqfbikedyosmg_ind_6\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"44.04966437187131%\" y=\"40\" height=\"20\" width=\"3.826026215847378e-07%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"41.185510910868885%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"41.185510910868885%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"41.185510910868885%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"41.185510910868885%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"41.185510910868885%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"41.185510910868885%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"41.185510910868885%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"41.185510910868885%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"42.49005282394254%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"42.49005282394254%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"42.49005282394254%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"42.49005282394254%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"42.49005282394254%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"42.49005282394254%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"42.49005282394254%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"42.49005282394254%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"43.100642249117335%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"43.100642249117335%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"43.100642249117335%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"43.100642249117335%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"43.100642249117335%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"43.100642249117335%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"43.100642249117335%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"43.100642249117335%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"43.67771447553907%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"43.67771447553907%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"43.67771447553907%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"43.67771447553907%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"43.67771447553907%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"43.67771447553907%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"43.67771447553907%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"43.67771447553907%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"44.04966437187131%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"44.04966437187131%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"44.04966437187131%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"44.04966437187131%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"44.04966437187131%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"44.04966437187131%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"44.04966437187131%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"44.04966437187131%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"16.47936992215004%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"44.04966475447393%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"41.185510910868885%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"16.47936992215004%\" y=\"40\" height=\"20\" width=\"24.706140988718847%\" onmouseover=\"document.getElementById('_tp_rewwfvkbqfbikedyosmg_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_rewwfvkbqfbikedyosmg_ind_5').style.opacity = 1;document.getElementById('_fb_rewwfvkbqfbikedyosmg_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rewwfvkbqfbikedyosmg_ind_5').style.textDecoration = 'none';document.getElementById('_fs_rewwfvkbqfbikedyosmg_ind_5').style.opacity = 0;document.getElementById('_fb_rewwfvkbqfbikedyosmg_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"42.49005282394254%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"41.185510910868885%\" y=\"40\" height=\"20\" width=\"1.3045419130736562%\" onmouseover=\"document.getElementById('_tp_rewwfvkbqfbikedyosmg_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_rewwfvkbqfbikedyosmg_ind_2').style.opacity = 1;document.getElementById('_fb_rewwfvkbqfbikedyosmg_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rewwfvkbqfbikedyosmg_ind_2').style.textDecoration = 'none';document.getElementById('_fs_rewwfvkbqfbikedyosmg_ind_2').style.opacity = 0;document.getElementById('_fb_rewwfvkbqfbikedyosmg_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"43.100642249117335%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"42.49005282394254%\" y=\"40\" height=\"20\" width=\"0.6105894251747941%\" onmouseover=\"document.getElementById('_tp_rewwfvkbqfbikedyosmg_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_rewwfvkbqfbikedyosmg_ind_1').style.opacity = 1;document.getElementById('_fb_rewwfvkbqfbikedyosmg_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rewwfvkbqfbikedyosmg_ind_1').style.textDecoration = 'none';document.getElementById('_fs_rewwfvkbqfbikedyosmg_ind_1').style.opacity = 0;document.getElementById('_fb_rewwfvkbqfbikedyosmg_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"43.67771447553907%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"43.100642249117335%\" y=\"40\" height=\"20\" width=\"0.5770722264217341%\" onmouseover=\"document.getElementById('_tp_rewwfvkbqfbikedyosmg_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_rewwfvkbqfbikedyosmg_ind_3').style.opacity = 1;document.getElementById('_fb_rewwfvkbqfbikedyosmg_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rewwfvkbqfbikedyosmg_ind_3').style.textDecoration = 'none';document.getElementById('_fs_rewwfvkbqfbikedyosmg_ind_3').style.opacity = 0;document.getElementById('_fb_rewwfvkbqfbikedyosmg_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"44.04966437187131%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"43.67771447553907%\" y=\"40\" height=\"20\" width=\"0.3719498963322394%\" onmouseover=\"document.getElementById('_tp_rewwfvkbqfbikedyosmg_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_rewwfvkbqfbikedyosmg_ind_4').style.opacity = 1;document.getElementById('_fb_rewwfvkbqfbikedyosmg_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rewwfvkbqfbikedyosmg_ind_4').style.textDecoration = 'none';document.getElementById('_fs_rewwfvkbqfbikedyosmg_ind_4').style.opacity = 0;document.getElementById('_fb_rewwfvkbqfbikedyosmg_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"44.04966437187131%\" y=\"40\" height=\"20\" width=\"3.826026215847378e-07%\" onmouseover=\"document.getElementById('_tp_rewwfvkbqfbikedyosmg_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_rewwfvkbqfbikedyosmg_ind_6').style.opacity = 1;document.getElementById('_fb_rewwfvkbqfbikedyosmg_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rewwfvkbqfbikedyosmg_ind_6').style.textDecoration = 'none';document.getElementById('_fs_rewwfvkbqfbikedyosmg_ind_6').style.opacity = 0;document.getElementById('_fb_rewwfvkbqfbikedyosmg_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_rewwfvkbqfbikedyosmg_ind_0'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_rewwfvkbqfbikedyosmg_ind_0').style.opacity = 1; document.getElementById('_fs_rewwfvkbqfbikedyosmg_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_rewwfvkbqfbikedyosmg_ind_0').style.opacity = 0; document.getElementById('_fs_rewwfvkbqfbikedyosmg_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.115</div\n",
|
|
" ><div id='_tp_rewwfvkbqfbikedyosmg_ind_1'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_rewwfvkbqfbikedyosmg_ind_1').style.opacity = 1; document.getElementById('_fs_rewwfvkbqfbikedyosmg_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_rewwfvkbqfbikedyosmg_ind_1').style.opacity = 0; document.getElementById('_fs_rewwfvkbqfbikedyosmg_ind_1').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.247</div\n",
|
|
" ><div id='_tp_rewwfvkbqfbikedyosmg_ind_2'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03042186571598325); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_rewwfvkbqfbikedyosmg_ind_2').style.opacity = 1; document.getElementById('_fs_rewwfvkbqfbikedyosmg_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_rewwfvkbqfbikedyosmg_ind_2').style.opacity = 0; document.getElementById('_fs_rewwfvkbqfbikedyosmg_ind_2').style.opacity = 0;\"\n",
|
|
" >didn</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.109</div\n",
|
|
" ><div id='_tp_rewwfvkbqfbikedyosmg_ind_3'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_rewwfvkbqfbikedyosmg_ind_3').style.opacity = 1; document.getElementById('_fs_rewwfvkbqfbikedyosmg_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_rewwfvkbqfbikedyosmg_ind_3').style.opacity = 0; document.getElementById('_fs_rewwfvkbqfbikedyosmg_ind_3').style.opacity = 0;\"\n",
|
|
" >t </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.07</div\n",
|
|
" ><div id='_tp_rewwfvkbqfbikedyosmg_ind_4'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_rewwfvkbqfbikedyosmg_ind_4').style.opacity = 1; document.getElementById('_fs_rewwfvkbqfbikedyosmg_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_rewwfvkbqfbikedyosmg_ind_4').style.opacity = 0; document.getElementById('_fs_rewwfvkbqfbikedyosmg_ind_4').style.opacity = 0;\"\n",
|
|
" >feel </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-4.673</div\n",
|
|
" ><div id='_tp_rewwfvkbqfbikedyosmg_ind_5'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.6768072885719945); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_rewwfvkbqfbikedyosmg_ind_5').style.opacity = 1; document.getElementById('_fs_rewwfvkbqfbikedyosmg_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_rewwfvkbqfbikedyosmg_ind_5').style.opacity = 0; document.getElementById('_fs_rewwfvkbqfbikedyosmg_ind_5').style.opacity = 0;\"\n",
|
|
" >humiliated</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_rewwfvkbqfbikedyosmg_ind_6'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_rewwfvkbqfbikedyosmg_ind_6').style.opacity = 1; document.getElementById('_fs_rewwfvkbqfbikedyosmg_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_rewwfvkbqfbikedyosmg_ind_6').style.opacity = 0; document.getElementById('_fs_rewwfvkbqfbikedyosmg_ind_6').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_bwovfuqhtsyfngeozrqz_output_2_zoom' style='display: none;'><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"45.71864404297374%\" y1=\"33\" x2=\"45.71864404297374%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"45.71864404297374%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-5</text><line x1=\"29.738067173342312%\" y1=\"33\" x2=\"29.738067173342312%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"29.738067173342312%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6</text><line x1=\"13.757490303710883%\" y1=\"33\" x2=\"13.757490303710883%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"13.757490303710883%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7</text><line x1=\"61.69922091260517%\" y1=\"33\" x2=\"61.69922091260517%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"61.69922091260517%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"77.6797977822366%\" y1=\"33\" x2=\"77.6797977822366%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"77.6797977822366%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-3</text><line x1=\"91.66666600419072%\" y1=\"33\" x2=\"91.66666600419072%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"91.66666600419072%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2.12476</text><text x=\"91.66666600419072%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2.12476</text><text x=\"91.66666600419072%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"8.333333836003508%\" y1=\"33\" x2=\"8.333333836003508%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"8.333333836003508%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7.33942</text><text x=\"8.333333836003508%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7.33942</text><text x=\"8.333333836003508%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">love</tspan>(inputs)</text><rect x=\"8.333333320016187%\" width=\"5.159873270953251e-07%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"8.333333320016187%\" x2=\"8.333333836003508%\" y1=\"60\" y2=\"60\" id=\"_fb_srtewhtcclwtwblkyetj_ind_0\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.333333578009848%\" y=\"71\" font-size=\"12px\" id=\"_fs_srtewhtcclwtwblkyetj_ind_0\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"8.333333320016187%\" y=\"40\" height=\"20\" width=\"5.159873204263477e-07%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><rect transform=\"translate(-8,0)\" x=\"8.333333836003508%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.333333320016187%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><rect x=\"8.333333320016187%\" y=\"40\" height=\"20\" width=\"5.159873204263477e-07%\" onmouseover=\"document.getElementById('_tp_srtewhtcclwtwblkyetj_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_srtewhtcclwtwblkyetj_ind_0').style.opacity = 1;document.getElementById('_fb_srtewhtcclwtwblkyetj_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_srtewhtcclwtwblkyetj_ind_0').style.textDecoration = 'none';document.getElementById('_fs_srtewhtcclwtwblkyetj_ind_0').style.opacity = 0;document.getElementById('_fb_srtewhtcclwtwblkyetj_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"8.333333836003508%\" width=\"83.33333268417454%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"8.333333836003508%\" x2=\"83.00954164866725%\" y1=\"60\" y2=\"60\" id=\"_fb_srtewhtcclwtwblkyetj_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"45.67143774233538%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_srtewhtcclwtwblkyetj_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-4.673</text><svg x=\"8.333333836003508%\" y=\"40\" height=\"20\" width=\"74.67620781266375%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">humiliated</text> </svg></svg><line x1=\"83.00954164866725%\" x2=\"86.95261972976056%\" y1=\"60\" y2=\"60\" id=\"_fb_srtewhtcclwtwblkyetj_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"84.98108068921391%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_srtewhtcclwtwblkyetj_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.247</text><svg x=\"83.00954164866725%\" y=\"40\" height=\"20\" width=\"3.9430780810933044%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">didn</text> </svg></svg><line x1=\"86.95261972976056%\" x2=\"88.79817314190161%\" y1=\"60\" y2=\"60\" id=\"_fb_srtewhtcclwtwblkyetj_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"87.87539643583108%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_srtewhtcclwtwblkyetj_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.115</text><svg x=\"86.95261972976056%\" y=\"40\" height=\"20\" width=\"1.845553412141058%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"88.79817314190161%\" x2=\"90.54241824771812%\" y1=\"60\" y2=\"60\" id=\"_fb_srtewhtcclwtwblkyetj_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"89.67029569480987%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_srtewhtcclwtwblkyetj_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.109</text><svg x=\"88.79817314190161%\" y=\"40\" height=\"20\" width=\"1.7442451058165034%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">t</text> </svg></svg><line x1=\"90.54241824771812%\" x2=\"91.66666536373226%\" y1=\"60\" y2=\"60\" id=\"_fb_srtewhtcclwtwblkyetj_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.10454180572519%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_srtewhtcclwtwblkyetj_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.07</text><svg x=\"90.54241824771812%\" y=\"40\" height=\"20\" width=\"1.1242471160141463%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"91.66666536373226%\" x2=\"91.66666652017804%\" y1=\"60\" y2=\"60\" id=\"_fb_srtewhtcclwtwblkyetj_ind_6\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.66666594195516%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_srtewhtcclwtwblkyetj_ind_6\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"91.66666536373226%\" y=\"40\" height=\"20\" width=\"1.156445776473447e-06%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"83.00954164866725%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"83.00954164866725%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"83.00954164866725%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"83.00954164866725%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"83.00954164866725%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"83.00954164866725%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"83.00954164866725%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"83.00954164866725%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"86.95261972976056%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"86.95261972976056%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"86.95261972976056%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"86.95261972976056%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"86.95261972976056%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"86.95261972976056%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"86.95261972976056%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"86.95261972976056%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"88.79817314190161%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"88.79817314190161%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"88.79817314190161%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"88.79817314190161%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"88.79817314190161%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"88.79817314190161%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"88.79817314190161%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"88.79817314190161%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"90.54241824771812%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.54241824771812%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.54241824771812%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.54241824771812%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.54241824771812%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.54241824771812%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.54241824771812%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.54241824771812%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.66666536373226%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.66666536373226%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.66666536373226%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.66666536373226%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.66666536373226%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.66666536373226%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.66666536373226%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.66666536373226%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"8.333333836003508%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66666652017804%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"83.00954164866725%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"8.333333836003508%\" y=\"40\" height=\"20\" width=\"74.67620781266375%\" onmouseover=\"document.getElementById('_tp_srtewhtcclwtwblkyetj_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_srtewhtcclwtwblkyetj_ind_5').style.opacity = 1;document.getElementById('_fb_srtewhtcclwtwblkyetj_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_srtewhtcclwtwblkyetj_ind_5').style.textDecoration = 'none';document.getElementById('_fs_srtewhtcclwtwblkyetj_ind_5').style.opacity = 0;document.getElementById('_fb_srtewhtcclwtwblkyetj_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"86.95261972976056%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"83.00954164866725%\" y=\"40\" height=\"20\" width=\"3.9430780810933044%\" onmouseover=\"document.getElementById('_tp_srtewhtcclwtwblkyetj_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_srtewhtcclwtwblkyetj_ind_2').style.opacity = 1;document.getElementById('_fb_srtewhtcclwtwblkyetj_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_srtewhtcclwtwblkyetj_ind_2').style.textDecoration = 'none';document.getElementById('_fs_srtewhtcclwtwblkyetj_ind_2').style.opacity = 0;document.getElementById('_fb_srtewhtcclwtwblkyetj_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"88.79817314190161%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"86.95261972976056%\" y=\"40\" height=\"20\" width=\"1.845553412141058%\" onmouseover=\"document.getElementById('_tp_srtewhtcclwtwblkyetj_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_srtewhtcclwtwblkyetj_ind_1').style.opacity = 1;document.getElementById('_fb_srtewhtcclwtwblkyetj_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_srtewhtcclwtwblkyetj_ind_1').style.textDecoration = 'none';document.getElementById('_fs_srtewhtcclwtwblkyetj_ind_1').style.opacity = 0;document.getElementById('_fb_srtewhtcclwtwblkyetj_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"90.54241824771812%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"88.79817314190161%\" y=\"40\" height=\"20\" width=\"1.7442451058165034%\" onmouseover=\"document.getElementById('_tp_srtewhtcclwtwblkyetj_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_srtewhtcclwtwblkyetj_ind_3').style.opacity = 1;document.getElementById('_fb_srtewhtcclwtwblkyetj_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_srtewhtcclwtwblkyetj_ind_3').style.textDecoration = 'none';document.getElementById('_fs_srtewhtcclwtwblkyetj_ind_3').style.opacity = 0;document.getElementById('_fb_srtewhtcclwtwblkyetj_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66666536373226%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"90.54241824771812%\" y=\"40\" height=\"20\" width=\"1.1242471160141463%\" onmouseover=\"document.getElementById('_tp_srtewhtcclwtwblkyetj_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_srtewhtcclwtwblkyetj_ind_4').style.opacity = 1;document.getElementById('_fb_srtewhtcclwtwblkyetj_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_srtewhtcclwtwblkyetj_ind_4').style.textDecoration = 'none';document.getElementById('_fs_srtewhtcclwtwblkyetj_ind_4').style.opacity = 0;document.getElementById('_fb_srtewhtcclwtwblkyetj_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"91.66666536373226%\" y=\"40\" height=\"20\" width=\"1.156445776473447e-06%\" onmouseover=\"document.getElementById('_tp_srtewhtcclwtwblkyetj_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_srtewhtcclwtwblkyetj_ind_6').style.opacity = 1;document.getElementById('_fb_srtewhtcclwtwblkyetj_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_srtewhtcclwtwblkyetj_ind_6').style.textDecoration = 'none';document.getElementById('_fs_srtewhtcclwtwblkyetj_ind_6').style.opacity = 0;document.getElementById('_fb_srtewhtcclwtwblkyetj_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_srtewhtcclwtwblkyetj_ind_0'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_srtewhtcclwtwblkyetj_ind_0').style.opacity = 1; document.getElementById('_fs_srtewhtcclwtwblkyetj_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_srtewhtcclwtwblkyetj_ind_0').style.opacity = 0; document.getElementById('_fs_srtewhtcclwtwblkyetj_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.115</div\n",
|
|
" ><div id='_tp_srtewhtcclwtwblkyetj_ind_1'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.022539116656763607); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_srtewhtcclwtwblkyetj_ind_1').style.opacity = 1; document.getElementById('_fs_srtewhtcclwtwblkyetj_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_srtewhtcclwtwblkyetj_ind_1').style.opacity = 0; document.getElementById('_fs_srtewhtcclwtwblkyetj_ind_1').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.247</div\n",
|
|
" ><div id='_tp_srtewhtcclwtwblkyetj_ind_2'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.04618736383442258); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_srtewhtcclwtwblkyetj_ind_2').style.opacity = 1; document.getElementById('_fs_srtewhtcclwtwblkyetj_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_srtewhtcclwtwblkyetj_ind_2').style.opacity = 0; document.getElementById('_fs_srtewhtcclwtwblkyetj_ind_2').style.opacity = 0;\"\n",
|
|
" >didn</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.109</div\n",
|
|
" ><div id='_tp_srtewhtcclwtwblkyetj_ind_3'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_srtewhtcclwtwblkyetj_ind_3').style.opacity = 1; document.getElementById('_fs_srtewhtcclwtwblkyetj_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_srtewhtcclwtwblkyetj_ind_3').style.opacity = 0; document.getElementById('_fs_srtewhtcclwtwblkyetj_ind_3').style.opacity = 0;\"\n",
|
|
" >t </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.07</div\n",
|
|
" ><div id='_tp_srtewhtcclwtwblkyetj_ind_4'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_srtewhtcclwtwblkyetj_ind_4').style.opacity = 1; document.getElementById('_fs_srtewhtcclwtwblkyetj_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_srtewhtcclwtwblkyetj_ind_4').style.opacity = 0; document.getElementById('_fs_srtewhtcclwtwblkyetj_ind_4').style.opacity = 0;\"\n",
|
|
" >feel </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-4.673</div\n",
|
|
" ><div id='_tp_srtewhtcclwtwblkyetj_ind_5'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 1.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_srtewhtcclwtwblkyetj_ind_5').style.opacity = 1; document.getElementById('_fs_srtewhtcclwtwblkyetj_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_srtewhtcclwtwblkyetj_ind_5').style.opacity = 0; document.getElementById('_fs_srtewhtcclwtwblkyetj_ind_5').style.opacity = 0;\"\n",
|
|
" >humiliated</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_srtewhtcclwtwblkyetj_ind_6'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_srtewhtcclwtwblkyetj_ind_6').style.opacity = 1; document.getElementById('_fs_srtewhtcclwtwblkyetj_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_srtewhtcclwtwblkyetj_ind_6').style.opacity = 0; document.getElementById('_fs_srtewhtcclwtwblkyetj_ind_6').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_bwovfuqhtsyfngeozrqz_output_3' style='display: none';><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"49.99634084343776%\" y1=\"33\" x2=\"49.99634084343776%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"49.99634084343776%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1</text><line x1=\"34.135128947971666%\" y1=\"33\" x2=\"34.135128947971666%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"34.135128947971666%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"18.273917052505578%\" y1=\"33\" x2=\"18.273917052505578%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"18.273917052505578%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7</text><line x1=\"65.85755273890385%\" y1=\"33\" x2=\"65.85755273890385%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"65.85755273890385%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">2</text><line x1=\"81.71876463436993%\" y1=\"33\" x2=\"81.71876463436993%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"81.71876463436993%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">5</text><line x1=\"50.26148740543381%\" y1=\"33\" x2=\"50.26148740543381%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"50.26148740543381%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.94985</text><text x=\"50.26148740543381%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.94985</text><text x=\"50.26148740543381%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"19.87641441300932%\" y1=\"33\" x2=\"19.87641441300932%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"19.87641441300932%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.6969</text><text x=\"19.87641441300932%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.6969</text><text x=\"19.87641441300932%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">anger</tspan>(inputs)</text><rect x=\"19.87641430501243%\" width=\"1.0799689645762747e-07%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"19.87641430501243%\" x2=\"19.87641441300932%\" y1=\"60\" y2=\"60\" id=\"_fb_yzztkpzzqqhhrrmjggud_ind_6\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"19.876414359010873%\" y=\"71\" font-size=\"12px\" id=\"_fs_yzztkpzzqqhhrrmjggud_ind_6\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"19.87641430501243%\" y=\"40\" height=\"20\" width=\"1.0799689320606376e-07%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><rect transform=\"translate(-8,0)\" x=\"19.87641441300932%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"19.87641430501243%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><rect x=\"19.87641430501243%\" y=\"40\" height=\"20\" width=\"1.0799689320606376e-07%\" onmouseover=\"document.getElementById('_tp_yzztkpzzqqhhrrmjggud_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_yzztkpzzqqhhrrmjggud_ind_6').style.opacity = 1;document.getElementById('_fb_yzztkpzzqqhhrrmjggud_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_yzztkpzzqqhhrrmjggud_ind_6').style.textDecoration = 'none';document.getElementById('_fs_yzztkpzzqqhhrrmjggud_ind_6').style.opacity = 0;document.getElementById('_fb_yzztkpzzqqhhrrmjggud_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"19.87641441300932%\" width=\"30.385073100421383%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"19.87641441300932%\" x2=\"41.94809915113621%\" y1=\"60\" y2=\"60\" id=\"_fb_yzztkpzzqqhhrrmjggud_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"30.912256782072767%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_yzztkpzzqqhhrrmjggud_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-4.175</text><svg x=\"19.87641441300932%\" y=\"40\" height=\"20\" width=\"22.07168473812689%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">humiliated</text> </svg></svg><line x1=\"41.94809915113621%\" x2=\"48.46612423270901%\" y1=\"60\" y2=\"60\" id=\"_fb_yzztkpzzqqhhrrmjggud_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"45.207111691922606%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_yzztkpzzqqhhrrmjggud_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.233</text><svg x=\"41.94809915113621%\" y=\"40\" height=\"20\" width=\"6.5180250815727945%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"48.46612423270901%\" x2=\"49.26555455212663%\" y1=\"60\" y2=\"60\" id=\"_fb_yzztkpzzqqhhrrmjggud_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"48.86583939241782%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_yzztkpzzqqhhrrmjggud_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.151</text><svg x=\"48.46612423270901%\" y=\"40\" height=\"20\" width=\"0.799430319417624%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">t</text> </svg></svg><line x1=\"49.26555455212663%\" x2=\"49.99635086088849%\" y1=\"60\" y2=\"60\" id=\"_fb_yzztkpzzqqhhrrmjggud_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"49.63095270650756%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_yzztkpzzqqhhrrmjggud_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.138</text><svg x=\"49.26555455212663%\" y=\"40\" height=\"20\" width=\"0.7307963087618603%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">didn</text> </svg></svg><line x1=\"49.99635086088849%\" x2=\"50.261487367837354%\" y1=\"60\" y2=\"60\" id=\"_fb_yzztkpzzqqhhrrmjggud_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"50.12891911436292%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_yzztkpzzqqhhrrmjggud_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.05</text><svg x=\"49.99635086088849%\" y=\"40\" height=\"20\" width=\"0.26513650694886337%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"50.261487367837354%\" x2=\"50.261487513430716%\" y1=\"60\" y2=\"60\" id=\"_fb_yzztkpzzqqhhrrmjggud_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"50.261487440634035%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_yzztkpzzqqhhrrmjggud_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"50.261487367837354%\" y=\"40\" height=\"20\" width=\"1.455933613669913e-07%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"41.94809915113621%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"41.94809915113621%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"41.94809915113621%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"41.94809915113621%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"41.94809915113621%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"41.94809915113621%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"41.94809915113621%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"41.94809915113621%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"48.46612423270901%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"48.46612423270901%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"48.46612423270901%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"48.46612423270901%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"48.46612423270901%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"48.46612423270901%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"48.46612423270901%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"48.46612423270901%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"49.26555455212663%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"49.26555455212663%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"49.26555455212663%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"49.26555455212663%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"49.26555455212663%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"49.26555455212663%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"49.26555455212663%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"49.26555455212663%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"49.99635086088849%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"49.99635086088849%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"49.99635086088849%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"49.99635086088849%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"49.99635086088849%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"49.99635086088849%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"49.99635086088849%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"49.99635086088849%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"50.261487367837354%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"50.261487367837354%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"50.261487367837354%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"50.261487367837354%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"50.261487367837354%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"50.261487367837354%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"50.261487367837354%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"50.261487367837354%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"19.87641441300932%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"50.26148751343071%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"41.94809915113621%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"19.87641441300932%\" y=\"40\" height=\"20\" width=\"22.07168473812689%\" onmouseover=\"document.getElementById('_tp_yzztkpzzqqhhrrmjggud_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_yzztkpzzqqhhrrmjggud_ind_5').style.opacity = 1;document.getElementById('_fb_yzztkpzzqqhhrrmjggud_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_yzztkpzzqqhhrrmjggud_ind_5').style.textDecoration = 'none';document.getElementById('_fs_yzztkpzzqqhhrrmjggud_ind_5').style.opacity = 0;document.getElementById('_fb_yzztkpzzqqhhrrmjggud_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"48.46612423270901%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"41.94809915113621%\" y=\"40\" height=\"20\" width=\"6.5180250815727945%\" onmouseover=\"document.getElementById('_tp_yzztkpzzqqhhrrmjggud_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_yzztkpzzqqhhrrmjggud_ind_4').style.opacity = 1;document.getElementById('_fb_yzztkpzzqqhhrrmjggud_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_yzztkpzzqqhhrrmjggud_ind_4').style.textDecoration = 'none';document.getElementById('_fs_yzztkpzzqqhhrrmjggud_ind_4').style.opacity = 0;document.getElementById('_fb_yzztkpzzqqhhrrmjggud_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"49.26555455212663%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"48.46612423270901%\" y=\"40\" height=\"20\" width=\"0.799430319417624%\" onmouseover=\"document.getElementById('_tp_yzztkpzzqqhhrrmjggud_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_yzztkpzzqqhhrrmjggud_ind_3').style.opacity = 1;document.getElementById('_fb_yzztkpzzqqhhrrmjggud_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_yzztkpzzqqhhrrmjggud_ind_3').style.textDecoration = 'none';document.getElementById('_fs_yzztkpzzqqhhrrmjggud_ind_3').style.opacity = 0;document.getElementById('_fb_yzztkpzzqqhhrrmjggud_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"49.99635086088849%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"49.26555455212663%\" y=\"40\" height=\"20\" width=\"0.7307963087618603%\" onmouseover=\"document.getElementById('_tp_yzztkpzzqqhhrrmjggud_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_yzztkpzzqqhhrrmjggud_ind_2').style.opacity = 1;document.getElementById('_fb_yzztkpzzqqhhrrmjggud_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_yzztkpzzqqhhrrmjggud_ind_2').style.textDecoration = 'none';document.getElementById('_fs_yzztkpzzqqhhrrmjggud_ind_2').style.opacity = 0;document.getElementById('_fb_yzztkpzzqqhhrrmjggud_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"50.261487367837354%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"49.99635086088849%\" y=\"40\" height=\"20\" width=\"0.26513650694886337%\" onmouseover=\"document.getElementById('_tp_yzztkpzzqqhhrrmjggud_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_yzztkpzzqqhhrrmjggud_ind_1').style.opacity = 1;document.getElementById('_fb_yzztkpzzqqhhrrmjggud_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_yzztkpzzqqhhrrmjggud_ind_1').style.textDecoration = 'none';document.getElementById('_fs_yzztkpzzqqhhrrmjggud_ind_1').style.opacity = 0;document.getElementById('_fb_yzztkpzzqqhhrrmjggud_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"50.261487367837354%\" y=\"40\" height=\"20\" width=\"1.455933613669913e-07%\" onmouseover=\"document.getElementById('_tp_yzztkpzzqqhhrrmjggud_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_yzztkpzzqqhhrrmjggud_ind_0').style.opacity = 1;document.getElementById('_fb_yzztkpzzqqhhrrmjggud_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_yzztkpzzqqhhrrmjggud_ind_0').style.textDecoration = 'none';document.getElementById('_fs_yzztkpzzqqhhrrmjggud_ind_0').style.opacity = 0;document.getElementById('_fb_yzztkpzzqqhhrrmjggud_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_yzztkpzzqqhhrrmjggud_ind_0'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_yzztkpzzqqhhrrmjggud_ind_0').style.opacity = 1; document.getElementById('_fs_yzztkpzzqqhhrrmjggud_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_yzztkpzzqqhhrrmjggud_ind_0').style.opacity = 0; document.getElementById('_fs_yzztkpzzqqhhrrmjggud_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.05</div\n",
|
|
" ><div id='_tp_yzztkpzzqqhhrrmjggud_ind_1'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_yzztkpzzqqhhrrmjggud_ind_1').style.opacity = 1; document.getElementById('_fs_yzztkpzzqqhhrrmjggud_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_yzztkpzzqqhhrrmjggud_ind_1').style.opacity = 0; document.getElementById('_fs_yzztkpzzqqhhrrmjggud_ind_1').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.138</div\n",
|
|
" ><div id='_tp_yzztkpzzqqhhrrmjggud_ind_2'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_yzztkpzzqqhhrrmjggud_ind_2').style.opacity = 1; document.getElementById('_fs_yzztkpzzqqhhrrmjggud_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_yzztkpzzqqhhrrmjggud_ind_2').style.opacity = 0; document.getElementById('_fs_yzztkpzzqqhhrrmjggud_ind_2').style.opacity = 0;\"\n",
|
|
" >didn</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.151</div\n",
|
|
" ><div id='_tp_yzztkpzzqqhhrrmjggud_ind_3'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_yzztkpzzqqhhrrmjggud_ind_3').style.opacity = 1; document.getElementById('_fs_yzztkpzzqqhhrrmjggud_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_yzztkpzzqqhhrrmjggud_ind_3').style.opacity = 0; document.getElementById('_fs_yzztkpzzqqhhrrmjggud_ind_3').style.opacity = 0;\"\n",
|
|
" >t </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.233</div\n",
|
|
" ><div id='_tp_yzztkpzzqqhhrrmjggud_ind_4'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.1723113487819369); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_yzztkpzzqqhhrrmjggud_ind_4').style.opacity = 1; document.getElementById('_fs_yzztkpzzqqhhrrmjggud_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_yzztkpzzqqhhrrmjggud_ind_4').style.opacity = 0; document.getElementById('_fs_yzztkpzzqqhhrrmjggud_ind_4').style.opacity = 0;\"\n",
|
|
" >feel </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-4.175</div\n",
|
|
" ><div id='_tp_yzztkpzzqqhhrrmjggud_ind_5'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.6058625470390175); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_yzztkpzzqqhhrrmjggud_ind_5').style.opacity = 1; document.getElementById('_fs_yzztkpzzqqhhrrmjggud_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_yzztkpzzqqhhrrmjggud_ind_5').style.opacity = 0; document.getElementById('_fs_yzztkpzzqqhhrrmjggud_ind_5').style.opacity = 0;\"\n",
|
|
" >humiliated</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_yzztkpzzqqhhrrmjggud_ind_6'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_yzztkpzzqqhhrrmjggud_ind_6').style.opacity = 1; document.getElementById('_fs_yzztkpzzqqhhrrmjggud_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_yzztkpzzqqhhrrmjggud_ind_6').style.opacity = 0; document.getElementById('_fs_yzztkpzzqqhhrrmjggud_ind_6').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_bwovfuqhtsyfngeozrqz_output_3_zoom' style='display: none;'><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"47.438923436940314%\" y1=\"33\" x2=\"47.438923436940314%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"47.438923436940314%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"32.938737254812786%\" y1=\"33\" x2=\"32.938737254812786%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"32.938737254812786%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-5</text><line x1=\"18.438551072685268%\" y1=\"33\" x2=\"18.438551072685268%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"18.438551072685268%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6</text><line x1=\"61.939109619067835%\" y1=\"33\" x2=\"61.939109619067835%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"61.939109619067835%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-3</text><line x1=\"76.43929580119536%\" y1=\"33\" x2=\"76.43929580119536%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"76.43929580119536%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2</text><line x1=\"90.93948198332288%\" y1=\"33\" x2=\"90.93948198332288%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"90.93948198332288%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1</text><line x1=\"91.66666623755874%\" y1=\"33\" x2=\"91.66666623755874%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"91.66666623755874%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.94985</text><text x=\"91.66666623755874%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.94985</text><text x=\"91.66666623755874%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"8.333333617439402%\" y1=\"33\" x2=\"8.333333617439402%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"8.333333617439402%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.6969</text><text x=\"8.333333617439402%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.6969</text><text x=\"8.333333617439402%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">anger</tspan>(inputs)</text><rect x=\"8.33333332124985%\" width=\"2.9618955651967153e-07%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"8.33333332124985%\" x2=\"8.333333617439402%\" y1=\"60\" y2=\"60\" id=\"_fb_wvtkwgirsxaiwtypaodb_ind_6\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.333333469344627%\" y=\"71\" font-size=\"12px\" id=\"_fs_wvtkwgirsxaiwtypaodb_ind_6\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"8.33333332124985%\" y=\"40\" height=\"20\" width=\"2.961895528841296e-07%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><rect transform=\"translate(-8,0)\" x=\"8.333333617439402%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.33333332124985%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><rect x=\"8.33333332124985%\" y=\"40\" height=\"20\" width=\"2.961895528841296e-07%\" onmouseover=\"document.getElementById('_tp_wvtkwgirsxaiwtypaodb_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_wvtkwgirsxaiwtypaodb_ind_6').style.opacity = 1;document.getElementById('_fb_wvtkwgirsxaiwtypaodb_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_wvtkwgirsxaiwtypaodb_ind_6').style.textDecoration = 'none';document.getElementById('_fs_wvtkwgirsxaiwtypaodb_ind_6').style.opacity = 0;document.getElementById('_fb_wvtkwgirsxaiwtypaodb_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"8.333333617439402%\" width=\"83.33333291630889%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"8.333333617439402%\" x2=\"68.86657789259087%\" y1=\"60\" y2=\"60\" id=\"_fb_wvtkwgirsxaiwtypaodb_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"38.59995575501514%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_wvtkwgirsxaiwtypaodb_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-4.175</text><svg x=\"8.333333617439402%\" y=\"40\" height=\"20\" width=\"60.53324427515147%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">humiliated</text> </svg></svg><line x1=\"68.86657789259087%\" x2=\"86.74274861248374%\" y1=\"60\" y2=\"60\" id=\"_fb_wvtkwgirsxaiwtypaodb_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"77.8046632525373%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_wvtkwgirsxaiwtypaodb_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.233</text><svg x=\"68.86657789259087%\" y=\"40\" height=\"20\" width=\"17.87617071989287%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"86.74274861248374%\" x2=\"88.9352459854947%\" y1=\"60\" y2=\"60\" id=\"_fb_wvtkwgirsxaiwtypaodb_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"87.83899729898923%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_wvtkwgirsxaiwtypaodb_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.151</text><svg x=\"86.74274861248374%\" y=\"40\" height=\"20\" width=\"2.1924973730109656%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">t</text> </svg></svg><line x1=\"88.9352459854947%\" x2=\"90.93950945692988%\" y1=\"60\" y2=\"60\" id=\"_fb_wvtkwgirsxaiwtypaodb_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"89.9373777212123%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_wvtkwgirsxaiwtypaodb_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.138</text><svg x=\"88.9352459854947%\" y=\"40\" height=\"20\" width=\"2.0042634714351806%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">didn</text> </svg></svg><line x1=\"90.93950945692988%\" x2=\"91.66666613444761%\" y1=\"60\" y2=\"60\" id=\"_fb_wvtkwgirsxaiwtypaodb_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.30308779568875%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_wvtkwgirsxaiwtypaodb_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.05</text><svg x=\"90.93950945692988%\" y=\"40\" height=\"20\" width=\"0.7271566775177263%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"91.66666613444761%\" x2=\"91.66666653374828%\" y1=\"60\" y2=\"60\" id=\"_fb_wvtkwgirsxaiwtypaodb_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.66666633409795%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_wvtkwgirsxaiwtypaodb_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"91.66666613444761%\" y=\"40\" height=\"20\" width=\"3.9930067430304916e-07%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"68.86657789259087%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"68.86657789259087%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"68.86657789259087%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"68.86657789259087%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"68.86657789259087%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"68.86657789259087%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"68.86657789259087%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"68.86657789259087%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"86.74274861248374%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"86.74274861248374%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"86.74274861248374%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"86.74274861248374%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"86.74274861248374%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"86.74274861248374%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"86.74274861248374%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"86.74274861248374%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"88.9352459854947%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"88.9352459854947%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"88.9352459854947%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"88.9352459854947%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"88.9352459854947%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"88.9352459854947%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"88.9352459854947%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"88.9352459854947%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"90.93950945692988%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.93950945692988%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.93950945692988%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.93950945692988%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.93950945692988%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.93950945692988%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.93950945692988%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.93950945692988%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.66666613444761%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.66666613444761%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.66666613444761%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.66666613444761%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.66666613444761%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.66666613444761%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.66666613444761%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.66666613444761%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"8.333333617439402%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66666653374828%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"68.86657789259087%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"8.333333617439402%\" y=\"40\" height=\"20\" width=\"60.53324427515147%\" onmouseover=\"document.getElementById('_tp_wvtkwgirsxaiwtypaodb_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_wvtkwgirsxaiwtypaodb_ind_5').style.opacity = 1;document.getElementById('_fb_wvtkwgirsxaiwtypaodb_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_wvtkwgirsxaiwtypaodb_ind_5').style.textDecoration = 'none';document.getElementById('_fs_wvtkwgirsxaiwtypaodb_ind_5').style.opacity = 0;document.getElementById('_fb_wvtkwgirsxaiwtypaodb_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"86.74274861248374%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"68.86657789259087%\" y=\"40\" height=\"20\" width=\"17.87617071989287%\" onmouseover=\"document.getElementById('_tp_wvtkwgirsxaiwtypaodb_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_wvtkwgirsxaiwtypaodb_ind_4').style.opacity = 1;document.getElementById('_fb_wvtkwgirsxaiwtypaodb_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_wvtkwgirsxaiwtypaodb_ind_4').style.textDecoration = 'none';document.getElementById('_fs_wvtkwgirsxaiwtypaodb_ind_4').style.opacity = 0;document.getElementById('_fb_wvtkwgirsxaiwtypaodb_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"88.9352459854947%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"86.74274861248374%\" y=\"40\" height=\"20\" width=\"2.1924973730109656%\" onmouseover=\"document.getElementById('_tp_wvtkwgirsxaiwtypaodb_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_wvtkwgirsxaiwtypaodb_ind_3').style.opacity = 1;document.getElementById('_fb_wvtkwgirsxaiwtypaodb_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_wvtkwgirsxaiwtypaodb_ind_3').style.textDecoration = 'none';document.getElementById('_fs_wvtkwgirsxaiwtypaodb_ind_3').style.opacity = 0;document.getElementById('_fb_wvtkwgirsxaiwtypaodb_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"90.93950945692988%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"88.9352459854947%\" y=\"40\" height=\"20\" width=\"2.0042634714351806%\" onmouseover=\"document.getElementById('_tp_wvtkwgirsxaiwtypaodb_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_wvtkwgirsxaiwtypaodb_ind_2').style.opacity = 1;document.getElementById('_fb_wvtkwgirsxaiwtypaodb_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_wvtkwgirsxaiwtypaodb_ind_2').style.textDecoration = 'none';document.getElementById('_fs_wvtkwgirsxaiwtypaodb_ind_2').style.opacity = 0;document.getElementById('_fb_wvtkwgirsxaiwtypaodb_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66666613444761%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"90.93950945692988%\" y=\"40\" height=\"20\" width=\"0.7271566775177263%\" onmouseover=\"document.getElementById('_tp_wvtkwgirsxaiwtypaodb_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_wvtkwgirsxaiwtypaodb_ind_1').style.opacity = 1;document.getElementById('_fb_wvtkwgirsxaiwtypaodb_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_wvtkwgirsxaiwtypaodb_ind_1').style.textDecoration = 'none';document.getElementById('_fs_wvtkwgirsxaiwtypaodb_ind_1').style.opacity = 0;document.getElementById('_fb_wvtkwgirsxaiwtypaodb_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"91.66666613444761%\" y=\"40\" height=\"20\" width=\"3.9930067430304916e-07%\" onmouseover=\"document.getElementById('_tp_wvtkwgirsxaiwtypaodb_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_wvtkwgirsxaiwtypaodb_ind_0').style.opacity = 1;document.getElementById('_fb_wvtkwgirsxaiwtypaodb_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_wvtkwgirsxaiwtypaodb_ind_0').style.textDecoration = 'none';document.getElementById('_fs_wvtkwgirsxaiwtypaodb_ind_0').style.opacity = 0;document.getElementById('_fb_wvtkwgirsxaiwtypaodb_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_wvtkwgirsxaiwtypaodb_ind_0'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_wvtkwgirsxaiwtypaodb_ind_0').style.opacity = 1; document.getElementById('_fs_wvtkwgirsxaiwtypaodb_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_wvtkwgirsxaiwtypaodb_ind_0').style.opacity = 0; document.getElementById('_fs_wvtkwgirsxaiwtypaodb_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.05</div\n",
|
|
" ><div id='_tp_wvtkwgirsxaiwtypaodb_ind_1'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_wvtkwgirsxaiwtypaodb_ind_1').style.opacity = 1; document.getElementById('_fs_wvtkwgirsxaiwtypaodb_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_wvtkwgirsxaiwtypaodb_ind_1').style.opacity = 0; document.getElementById('_fs_wvtkwgirsxaiwtypaodb_ind_1').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.138</div\n",
|
|
" ><div id='_tp_wvtkwgirsxaiwtypaodb_ind_2'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03042186571598325); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_wvtkwgirsxaiwtypaodb_ind_2').style.opacity = 1; document.getElementById('_fs_wvtkwgirsxaiwtypaodb_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_wvtkwgirsxaiwtypaodb_ind_2').style.opacity = 0; document.getElementById('_fs_wvtkwgirsxaiwtypaodb_ind_2').style.opacity = 0;\"\n",
|
|
" >didn</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.151</div\n",
|
|
" ><div id='_tp_wvtkwgirsxaiwtypaodb_ind_3'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03042186571598325); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_wvtkwgirsxaiwtypaodb_ind_3').style.opacity = 1; document.getElementById('_fs_wvtkwgirsxaiwtypaodb_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_wvtkwgirsxaiwtypaodb_ind_3').style.opacity = 0; document.getElementById('_fs_wvtkwgirsxaiwtypaodb_ind_3').style.opacity = 0;\"\n",
|
|
" >t </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.233</div\n",
|
|
" ><div id='_tp_wvtkwgirsxaiwtypaodb_ind_4'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.29055258467023176); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_wvtkwgirsxaiwtypaodb_ind_4').style.opacity = 1; document.getElementById('_fs_wvtkwgirsxaiwtypaodb_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_wvtkwgirsxaiwtypaodb_ind_4').style.opacity = 0; document.getElementById('_fs_wvtkwgirsxaiwtypaodb_ind_4').style.opacity = 0;\"\n",
|
|
" >feel </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-4.175</div\n",
|
|
" ><div id='_tp_wvtkwgirsxaiwtypaodb_ind_5'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 1.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_wvtkwgirsxaiwtypaodb_ind_5').style.opacity = 1; document.getElementById('_fs_wvtkwgirsxaiwtypaodb_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_wvtkwgirsxaiwtypaodb_ind_5').style.opacity = 0; document.getElementById('_fs_wvtkwgirsxaiwtypaodb_ind_5').style.opacity = 0;\"\n",
|
|
" >humiliated</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_wvtkwgirsxaiwtypaodb_ind_6'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_wvtkwgirsxaiwtypaodb_ind_6').style.opacity = 1; document.getElementById('_fs_wvtkwgirsxaiwtypaodb_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_wvtkwgirsxaiwtypaodb_ind_6').style.opacity = 0; document.getElementById('_fs_wvtkwgirsxaiwtypaodb_ind_6').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_bwovfuqhtsyfngeozrqz_output_4' style='display: none';><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"49.99634084343776%\" y1=\"33\" x2=\"49.99634084343776%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"49.99634084343776%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1</text><line x1=\"34.135128947971666%\" y1=\"33\" x2=\"34.135128947971666%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"34.135128947971666%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"18.273917052505578%\" y1=\"33\" x2=\"18.273917052505578%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"18.273917052505578%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7</text><line x1=\"65.85755273890385%\" y1=\"33\" x2=\"65.85755273890385%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"65.85755273890385%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">2</text><line x1=\"81.71876463436993%\" y1=\"33\" x2=\"81.71876463436993%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"81.71876463436993%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">5</text><line x1=\"42.90511638077423%\" y1=\"33\" x2=\"42.90511638077423%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"42.90511638077423%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2.34124</text><text x=\"42.90511638077423%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2.34124</text><text x=\"42.90511638077423%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"16.461032745753986%\" y1=\"33\" x2=\"16.461032745753986%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"16.461032745753986%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7.34289</text><text x=\"16.461032745753986%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7.34289</text><text x=\"16.461032745753986%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">fear</tspan>(inputs)</text><rect x=\"15.092717973128838%\" width=\"1.3683147726251492%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"15.682774124882112%\" x2=\"16.461032745753986%\" y1=\"60\" y2=\"60\" id=\"_fb_dchxwsusdbybwkalbggj_ind_3\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"16.07190343531805%\" y=\"71\" font-size=\"12px\" id=\"_fs_dchxwsusdbybwkalbggj_ind_3\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.147</text><svg x=\"15.682774124882112%\" y=\"40\" height=\"20\" width=\"0.778258620871874%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">t</text> </svg></svg><line x1=\"15.092718962371253%\" x2=\"15.682774124882112%\" y1=\"60\" y2=\"60\" id=\"_fb_dchxwsusdbybwkalbggj_ind_2\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"15.387746543626683%\" y=\"71\" font-size=\"12px\" id=\"_fs_dchxwsusdbybwkalbggj_ind_2\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.112</text><svg x=\"15.092718962371253%\" y=\"40\" height=\"20\" width=\"0.5900551625108594%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">didn</text> </svg></svg><line x1=\"15.092717973128838%\" x2=\"15.092718962371253%\" y1=\"60\" y2=\"60\" id=\"_fb_dchxwsusdbybwkalbggj_ind_0\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"15.092718467750046%\" y=\"71\" font-size=\"12px\" id=\"_fs_dchxwsusdbybwkalbggj_ind_0\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"15.092717973128838%\" y=\"40\" height=\"20\" width=\"9.892424142066147e-07%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"15.682774124882112%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"15.682774124882112%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"15.682774124882112%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"15.682774124882112%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"15.682774124882112%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"15.682774124882112%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"15.682774124882112%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"15.682774124882112%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"15.092718962371253%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"15.092718962371253%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"15.092718962371253%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"15.092718962371253%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"15.092718962371253%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"15.092718962371253%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"15.092718962371253%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"15.092718962371253%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"16.461032745753986%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"15.092717973128838%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"16.461032745753986%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"15.682774124882112%\" y=\"40\" height=\"20\" width=\"0.778258620871874%\" onmouseover=\"document.getElementById('_tp_dchxwsusdbybwkalbggj_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_dchxwsusdbybwkalbggj_ind_3').style.opacity = 1;document.getElementById('_fb_dchxwsusdbybwkalbggj_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dchxwsusdbybwkalbggj_ind_3').style.textDecoration = 'none';document.getElementById('_fs_dchxwsusdbybwkalbggj_ind_3').style.opacity = 0;document.getElementById('_fb_dchxwsusdbybwkalbggj_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"15.682774124882112%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"15.092718962371253%\" y=\"40\" height=\"20\" width=\"0.5900551625108594%\" onmouseover=\"document.getElementById('_tp_dchxwsusdbybwkalbggj_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_dchxwsusdbybwkalbggj_ind_2').style.opacity = 1;document.getElementById('_fb_dchxwsusdbybwkalbggj_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dchxwsusdbybwkalbggj_ind_2').style.textDecoration = 'none';document.getElementById('_fs_dchxwsusdbybwkalbggj_ind_2').style.opacity = 0;document.getElementById('_fb_dchxwsusdbybwkalbggj_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"15.092717973128838%\" y=\"40\" height=\"20\" width=\"9.892424142066147e-07%\" onmouseover=\"document.getElementById('_tp_dchxwsusdbybwkalbggj_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_dchxwsusdbybwkalbggj_ind_0').style.opacity = 1;document.getElementById('_fb_dchxwsusdbybwkalbggj_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dchxwsusdbybwkalbggj_ind_0').style.textDecoration = 'none';document.getElementById('_fs_dchxwsusdbybwkalbggj_ind_0').style.opacity = 0;document.getElementById('_fb_dchxwsusdbybwkalbggj_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"16.461032745753986%\" width=\"27.81239840764539%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"16.461032745753986%\" x2=\"39.1843923677072%\" y1=\"60\" y2=\"60\" id=\"_fb_dchxwsusdbybwkalbggj_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"27.822712556730593%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dchxwsusdbybwkalbggj_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-4.298</text><svg x=\"16.461032745753986%\" y=\"40\" height=\"20\" width=\"22.72335962195321%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">humiliated</text> </svg></svg><line x1=\"39.1843923677072%\" x2=\"42.80513872021272%\" y1=\"60\" y2=\"60\" id=\"_fb_dchxwsusdbybwkalbggj_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"40.99476554395996%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dchxwsusdbybwkalbggj_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.685</text><svg x=\"39.1843923677072%\" y=\"40\" height=\"20\" width=\"3.6207463525055203%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"42.80513872021272%\" x2=\"44.273429947175494%\" y1=\"60\" y2=\"60\" id=\"_fb_dchxwsusdbybwkalbggj_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"43.539284333694106%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dchxwsusdbybwkalbggj_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.278</text><svg x=\"42.80513872021272%\" y=\"40\" height=\"20\" width=\"1.4682912269627764%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"44.273429947175494%\" x2=\"44.27343115339938%\" y1=\"60\" y2=\"60\" id=\"_fb_dchxwsusdbybwkalbggj_ind_6\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"44.273430550287436%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dchxwsusdbybwkalbggj_ind_6\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"44.273429947175494%\" y=\"40\" height=\"20\" width=\"1.206223885219515e-06%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"39.1843923677072%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"39.1843923677072%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"39.1843923677072%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"39.1843923677072%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"39.1843923677072%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"39.1843923677072%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"39.1843923677072%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"39.1843923677072%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"42.80513872021272%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"42.80513872021272%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"42.80513872021272%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"42.80513872021272%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"42.80513872021272%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"42.80513872021272%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"42.80513872021272%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"42.80513872021272%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"44.273429947175494%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"44.273429947175494%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"44.273429947175494%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"44.273429947175494%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"44.273429947175494%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"44.273429947175494%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"44.273429947175494%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"44.273429947175494%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"16.461032745753986%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"44.27343115339938%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"39.1843923677072%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"16.461032745753986%\" y=\"40\" height=\"20\" width=\"22.72335962195321%\" onmouseover=\"document.getElementById('_tp_dchxwsusdbybwkalbggj_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_dchxwsusdbybwkalbggj_ind_5').style.opacity = 1;document.getElementById('_fb_dchxwsusdbybwkalbggj_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dchxwsusdbybwkalbggj_ind_5').style.textDecoration = 'none';document.getElementById('_fs_dchxwsusdbybwkalbggj_ind_5').style.opacity = 0;document.getElementById('_fb_dchxwsusdbybwkalbggj_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"42.80513872021272%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"39.1843923677072%\" y=\"40\" height=\"20\" width=\"3.6207463525055203%\" onmouseover=\"document.getElementById('_tp_dchxwsusdbybwkalbggj_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_dchxwsusdbybwkalbggj_ind_4').style.opacity = 1;document.getElementById('_fb_dchxwsusdbybwkalbggj_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dchxwsusdbybwkalbggj_ind_4').style.textDecoration = 'none';document.getElementById('_fs_dchxwsusdbybwkalbggj_ind_4').style.opacity = 0;document.getElementById('_fb_dchxwsusdbybwkalbggj_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"44.273429947175494%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"42.80513872021272%\" y=\"40\" height=\"20\" width=\"1.4682912269627764%\" onmouseover=\"document.getElementById('_tp_dchxwsusdbybwkalbggj_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_dchxwsusdbybwkalbggj_ind_1').style.opacity = 1;document.getElementById('_fb_dchxwsusdbybwkalbggj_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dchxwsusdbybwkalbggj_ind_1').style.textDecoration = 'none';document.getElementById('_fs_dchxwsusdbybwkalbggj_ind_1').style.opacity = 0;document.getElementById('_fb_dchxwsusdbybwkalbggj_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"44.273429947175494%\" y=\"40\" height=\"20\" width=\"1.206223885219515e-06%\" onmouseover=\"document.getElementById('_tp_dchxwsusdbybwkalbggj_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_dchxwsusdbybwkalbggj_ind_6').style.opacity = 1;document.getElementById('_fb_dchxwsusdbybwkalbggj_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dchxwsusdbybwkalbggj_ind_6').style.textDecoration = 'none';document.getElementById('_fs_dchxwsusdbybwkalbggj_ind_6').style.opacity = 0;document.getElementById('_fb_dchxwsusdbybwkalbggj_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_dchxwsusdbybwkalbggj_ind_0'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dchxwsusdbybwkalbggj_ind_0').style.opacity = 1; document.getElementById('_fs_dchxwsusdbybwkalbggj_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dchxwsusdbybwkalbggj_ind_0').style.opacity = 0; document.getElementById('_fs_dchxwsusdbybwkalbggj_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.278</div\n",
|
|
" ><div id='_tp_dchxwsusdbybwkalbggj_ind_1'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03830461477520309); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dchxwsusdbybwkalbggj_ind_1').style.opacity = 1; document.getElementById('_fs_dchxwsusdbybwkalbggj_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dchxwsusdbybwkalbggj_ind_1').style.opacity = 0; document.getElementById('_fs_dchxwsusdbybwkalbggj_ind_1').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.112</div\n",
|
|
" ><div id='_tp_dchxwsusdbybwkalbggj_ind_2'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.014656367597544035); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dchxwsusdbybwkalbggj_ind_2').style.opacity = 1; document.getElementById('_fs_dchxwsusdbybwkalbggj_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dchxwsusdbybwkalbggj_ind_2').style.opacity = 0; document.getElementById('_fs_dchxwsusdbybwkalbggj_ind_2').style.opacity = 0;\"\n",
|
|
" >didn</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.147</div\n",
|
|
" ><div id='_tp_dchxwsusdbybwkalbggj_ind_3'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.014656367597544035); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dchxwsusdbybwkalbggj_ind_3').style.opacity = 1; document.getElementById('_fs_dchxwsusdbybwkalbggj_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dchxwsusdbybwkalbggj_ind_3').style.opacity = 0; document.getElementById('_fs_dchxwsusdbybwkalbggj_ind_3').style.opacity = 0;\"\n",
|
|
" >t </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.685</div\n",
|
|
" ><div id='_tp_dchxwsusdbybwkalbggj_ind_4'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.09348385818974048); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dchxwsusdbybwkalbggj_ind_4').style.opacity = 1; document.getElementById('_fs_dchxwsusdbybwkalbggj_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dchxwsusdbybwkalbggj_ind_4').style.opacity = 0; document.getElementById('_fs_dchxwsusdbybwkalbggj_ind_4').style.opacity = 0;\"\n",
|
|
" >feel </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-4.298</div\n",
|
|
" ><div id='_tp_dchxwsusdbybwkalbggj_ind_5'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.621628045157457); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dchxwsusdbybwkalbggj_ind_5').style.opacity = 1; document.getElementById('_fs_dchxwsusdbybwkalbggj_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dchxwsusdbybwkalbggj_ind_5').style.opacity = 0; document.getElementById('_fs_dchxwsusdbybwkalbggj_ind_5').style.opacity = 0;\"\n",
|
|
" >humiliated</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_dchxwsusdbybwkalbggj_ind_6'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dchxwsusdbybwkalbggj_ind_6').style.opacity = 1; document.getElementById('_fs_dchxwsusdbybwkalbggj_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dchxwsusdbybwkalbggj_ind_6').style.opacity = 0; document.getElementById('_fs_dchxwsusdbybwkalbggj_ind_6').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_bwovfuqhtsyfngeozrqz_output_4_zoom' style='display: none;'><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"47.61538763883027%\" y1=\"33\" x2=\"47.61538763883027%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"47.61538763883027%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-5</text><line x1=\"32.51674299874106%\" y1=\"33\" x2=\"32.51674299874106%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"32.51674299874106%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6</text><line x1=\"17.418098358651843%\" y1=\"33\" x2=\"17.418098358651843%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"17.418098358651843%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7</text><line x1=\"62.71403227891948%\" y1=\"33\" x2=\"62.71403227891948%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"62.71403227891948%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"77.81267691900871%\" y1=\"33\" x2=\"77.81267691900871%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"77.81267691900871%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-3</text><line x1=\"87.75907762954331%\" y1=\"33\" x2=\"87.75907762954331%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"87.75907762954331%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2.34124</text><text x=\"87.75907762954331%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2.34124</text><text x=\"87.75907762954331%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"12.240922219470251%\" y1=\"33\" x2=\"12.240922219470251%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"12.240922219470251%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7.34289</text><text x=\"12.240922219470251%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7.34289</text><text x=\"12.240922219470251%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">fear</tspan>(inputs)</text><rect x=\"8.333333320751143%\" width=\"3.907588898719111%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"10.018396519907041%\" x2=\"12.240922219470251%\" y1=\"60\" y2=\"60\" id=\"_fb_mvroqrlpsgudmpghmqke_ind_3\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"11.129659369688646%\" y=\"71\" font-size=\"12px\" id=\"_fs_mvroqrlpsgudmpghmqke_ind_3\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.147</text><svg x=\"10.018396519907041%\" y=\"40\" height=\"20\" width=\"2.22252569956321%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">t</text> </svg></svg><line x1=\"8.333336145797503%\" x2=\"10.018396519907041%\" y1=\"60\" y2=\"60\" id=\"_fb_mvroqrlpsgudmpghmqke_ind_2\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"9.175866332852273%\" y=\"71\" font-size=\"12px\" id=\"_fs_mvroqrlpsgudmpghmqke_ind_2\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.112</text><svg x=\"8.333336145797503%\" y=\"40\" height=\"20\" width=\"1.685060374109538%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">didn</text> </svg></svg><line x1=\"8.333333320751143%\" x2=\"8.333336145797503%\" y1=\"60\" y2=\"60\" id=\"_fb_mvroqrlpsgudmpghmqke_ind_0\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.333334733274324%\" y=\"71\" font-size=\"12px\" id=\"_fs_mvroqrlpsgudmpghmqke_ind_0\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"8.333333320751143%\" y=\"40\" height=\"20\" width=\"2.8250463603995968e-06%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"10.018396519907041%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"10.018396519907041%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"10.018396519907041%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"10.018396519907041%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"10.018396519907041%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"10.018396519907041%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"10.018396519907041%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"10.018396519907041%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.333336145797503%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.333336145797503%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.333336145797503%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.333336145797503%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.333336145797503%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.333336145797503%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.333336145797503%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.333336145797503%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"12.240922219470251%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.333333320751143%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"12.240922219470251%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"10.018396519907041%\" y=\"40\" height=\"20\" width=\"2.22252569956321%\" onmouseover=\"document.getElementById('_tp_mvroqrlpsgudmpghmqke_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_mvroqrlpsgudmpghmqke_ind_3').style.opacity = 1;document.getElementById('_fb_mvroqrlpsgudmpghmqke_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_mvroqrlpsgudmpghmqke_ind_3').style.textDecoration = 'none';document.getElementById('_fs_mvroqrlpsgudmpghmqke_ind_3').style.opacity = 0;document.getElementById('_fb_mvroqrlpsgudmpghmqke_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"10.018396519907041%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.333336145797503%\" y=\"40\" height=\"20\" width=\"1.685060374109538%\" onmouseover=\"document.getElementById('_tp_mvroqrlpsgudmpghmqke_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_mvroqrlpsgudmpghmqke_ind_2').style.opacity = 1;document.getElementById('_fb_mvroqrlpsgudmpghmqke_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_mvroqrlpsgudmpghmqke_ind_2').style.textDecoration = 'none';document.getElementById('_fs_mvroqrlpsgudmpghmqke_ind_2').style.opacity = 0;document.getElementById('_fb_mvroqrlpsgudmpghmqke_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"8.333333320751143%\" y=\"40\" height=\"20\" width=\"2.8250463603995968e-06%\" onmouseover=\"document.getElementById('_tp_mvroqrlpsgudmpghmqke_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_mvroqrlpsgudmpghmqke_ind_0').style.opacity = 1;document.getElementById('_fb_mvroqrlpsgudmpghmqke_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_mvroqrlpsgudmpghmqke_ind_0').style.textDecoration = 'none';document.getElementById('_fs_mvroqrlpsgudmpghmqke_ind_0').style.opacity = 0;document.getElementById('_fb_mvroqrlpsgudmpghmqke_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"12.240922219470251%\" width=\"79.42574430879218%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"12.240922219470251%\" x2=\"77.1335548042911%\" y1=\"60\" y2=\"60\" id=\"_fb_mvroqrlpsgudmpghmqke_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"44.68723851188067%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_mvroqrlpsgudmpghmqke_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-4.298</text><svg x=\"12.240922219470251%\" y=\"40\" height=\"20\" width=\"64.89263258482084%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">humiliated</text> </svg></svg><line x1=\"77.1335548042911%\" x2=\"87.47356467276909%\" y1=\"60\" y2=\"60\" id=\"_fb_mvroqrlpsgudmpghmqke_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"82.30355973853008%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_mvroqrlpsgudmpghmqke_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.685</text><svg x=\"77.1335548042911%\" y=\"40\" height=\"20\" width=\"10.340009868477992%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"87.47356467276909%\" x2=\"91.6666630835674%\" y1=\"60\" y2=\"60\" id=\"_fb_mvroqrlpsgudmpghmqke_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"89.57011387816824%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_mvroqrlpsgudmpghmqke_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.278</text><svg x=\"87.47356467276909%\" y=\"40\" height=\"20\" width=\"4.193098410798314%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"91.6666630835674%\" x2=\"91.66666652826243%\" y1=\"60\" y2=\"60\" id=\"_fb_mvroqrlpsgudmpghmqke_ind_6\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.6666648059149%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_mvroqrlpsgudmpghmqke_ind_6\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"91.6666630835674%\" y=\"40\" height=\"20\" width=\"3.4446950252231545e-06%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"77.1335548042911%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"77.1335548042911%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"77.1335548042911%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"77.1335548042911%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"77.1335548042911%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"77.1335548042911%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"77.1335548042911%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"77.1335548042911%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"87.47356467276909%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"87.47356467276909%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"87.47356467276909%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"87.47356467276909%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"87.47356467276909%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"87.47356467276909%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"87.47356467276909%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"87.47356467276909%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.6666630835674%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.6666630835674%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.6666630835674%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.6666630835674%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.6666630835674%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.6666630835674%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.6666630835674%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.6666630835674%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"12.240922219470251%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66666652826243%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"77.1335548042911%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"12.240922219470251%\" y=\"40\" height=\"20\" width=\"64.89263258482084%\" onmouseover=\"document.getElementById('_tp_mvroqrlpsgudmpghmqke_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_mvroqrlpsgudmpghmqke_ind_5').style.opacity = 1;document.getElementById('_fb_mvroqrlpsgudmpghmqke_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_mvroqrlpsgudmpghmqke_ind_5').style.textDecoration = 'none';document.getElementById('_fs_mvroqrlpsgudmpghmqke_ind_5').style.opacity = 0;document.getElementById('_fb_mvroqrlpsgudmpghmqke_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"87.47356467276909%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"77.1335548042911%\" y=\"40\" height=\"20\" width=\"10.340009868477992%\" onmouseover=\"document.getElementById('_tp_mvroqrlpsgudmpghmqke_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_mvroqrlpsgudmpghmqke_ind_4').style.opacity = 1;document.getElementById('_fb_mvroqrlpsgudmpghmqke_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_mvroqrlpsgudmpghmqke_ind_4').style.textDecoration = 'none';document.getElementById('_fs_mvroqrlpsgudmpghmqke_ind_4').style.opacity = 0;document.getElementById('_fb_mvroqrlpsgudmpghmqke_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.6666630835674%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"87.47356467276909%\" y=\"40\" height=\"20\" width=\"4.193098410798314%\" onmouseover=\"document.getElementById('_tp_mvroqrlpsgudmpghmqke_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_mvroqrlpsgudmpghmqke_ind_1').style.opacity = 1;document.getElementById('_fb_mvroqrlpsgudmpghmqke_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_mvroqrlpsgudmpghmqke_ind_1').style.textDecoration = 'none';document.getElementById('_fs_mvroqrlpsgudmpghmqke_ind_1').style.opacity = 0;document.getElementById('_fb_mvroqrlpsgudmpghmqke_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"91.6666630835674%\" y=\"40\" height=\"20\" width=\"3.4446950252231545e-06%\" onmouseover=\"document.getElementById('_tp_mvroqrlpsgudmpghmqke_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_mvroqrlpsgudmpghmqke_ind_6').style.opacity = 1;document.getElementById('_fb_mvroqrlpsgudmpghmqke_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_mvroqrlpsgudmpghmqke_ind_6').style.textDecoration = 'none';document.getElementById('_fs_mvroqrlpsgudmpghmqke_ind_6').style.opacity = 0;document.getElementById('_fb_mvroqrlpsgudmpghmqke_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_mvroqrlpsgudmpghmqke_ind_0'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_mvroqrlpsgudmpghmqke_ind_0').style.opacity = 1; document.getElementById('_fs_mvroqrlpsgudmpghmqke_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_mvroqrlpsgudmpghmqke_ind_0').style.opacity = 0; document.getElementById('_fs_mvroqrlpsgudmpghmqke_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.278</div\n",
|
|
" ><div id='_tp_mvroqrlpsgudmpghmqke_ind_1'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.06195286195286191); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_mvroqrlpsgudmpghmqke_ind_1').style.opacity = 1; document.getElementById('_fs_mvroqrlpsgudmpghmqke_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_mvroqrlpsgudmpghmqke_ind_1').style.opacity = 0; document.getElementById('_fs_mvroqrlpsgudmpghmqke_ind_1').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.112</div\n",
|
|
" ><div id='_tp_mvroqrlpsgudmpghmqke_ind_2'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.02253911665676371); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_mvroqrlpsgudmpghmqke_ind_2').style.opacity = 1; document.getElementById('_fs_mvroqrlpsgudmpghmqke_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_mvroqrlpsgudmpghmqke_ind_2').style.opacity = 0; document.getElementById('_fs_mvroqrlpsgudmpghmqke_ind_2').style.opacity = 0;\"\n",
|
|
" >didn</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.147</div\n",
|
|
" ><div id='_tp_mvroqrlpsgudmpghmqke_ind_3'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.030421865715983164); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_mvroqrlpsgudmpghmqke_ind_3').style.opacity = 1; document.getElementById('_fs_mvroqrlpsgudmpghmqke_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_mvroqrlpsgudmpghmqke_ind_3').style.opacity = 0; document.getElementById('_fs_mvroqrlpsgudmpghmqke_ind_3').style.opacity = 0;\"\n",
|
|
" >t </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.685</div\n",
|
|
" ><div id='_tp_mvroqrlpsgudmpghmqke_ind_4'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.1565458506634977); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_mvroqrlpsgudmpghmqke_ind_4').style.opacity = 1; document.getElementById('_fs_mvroqrlpsgudmpghmqke_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_mvroqrlpsgudmpghmqke_ind_4').style.opacity = 0; document.getElementById('_fs_mvroqrlpsgudmpghmqke_ind_4').style.opacity = 0;\"\n",
|
|
" >feel </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-4.298</div\n",
|
|
" ><div id='_tp_mvroqrlpsgudmpghmqke_ind_5'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 1.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_mvroqrlpsgudmpghmqke_ind_5').style.opacity = 1; document.getElementById('_fs_mvroqrlpsgudmpghmqke_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_mvroqrlpsgudmpghmqke_ind_5').style.opacity = 0; document.getElementById('_fs_mvroqrlpsgudmpghmqke_ind_5').style.opacity = 0;\"\n",
|
|
" >humiliated</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_mvroqrlpsgudmpghmqke_ind_6'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_mvroqrlpsgudmpghmqke_ind_6').style.opacity = 1; document.getElementById('_fs_mvroqrlpsgudmpghmqke_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_mvroqrlpsgudmpghmqke_ind_6').style.opacity = 0; document.getElementById('_fs_mvroqrlpsgudmpghmqke_ind_6').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_bwovfuqhtsyfngeozrqz_output_5' style='display: none';><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"49.99634084343776%\" y1=\"33\" x2=\"49.99634084343776%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"49.99634084343776%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1</text><line x1=\"34.135128947971666%\" y1=\"33\" x2=\"34.135128947971666%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"34.135128947971666%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"18.273917052505578%\" y1=\"33\" x2=\"18.273917052505578%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"18.273917052505578%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7</text><line x1=\"65.85755273890385%\" y1=\"33\" x2=\"65.85755273890385%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"65.85755273890385%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">2</text><line x1=\"81.71876463436993%\" y1=\"33\" x2=\"81.71876463436993%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"81.71876463436993%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">5</text><line x1=\"46.98051717405314%\" y1=\"33\" x2=\"46.98051717405314%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"46.98051717405314%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1.57041</text><text x=\"46.98051717405314%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1.57041</text><text x=\"46.98051717405314%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"13.68027610410397%\" y1=\"33\" x2=\"13.68027610410397%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"13.68027610410397%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7.86884</text><text x=\"13.68027610410397%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7.86884</text><text x=\"13.68027610410397%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">surprise</tspan>(inputs)</text><rect x=\"13.680275885718961%\" width=\"2.1838500995059714e-07%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"13.680275885718961%\" x2=\"13.68027610410397%\" y1=\"60\" y2=\"60\" id=\"_fb_jfmrippheldubajfpcwc_ind_0\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"13.680275994911465%\" y=\"71\" font-size=\"12px\" id=\"_fs_jfmrippheldubajfpcwc_ind_0\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"13.680275885718961%\" y=\"40\" height=\"20\" width=\"2.1838500963156093e-07%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><rect transform=\"translate(-8,0)\" x=\"13.68027610410397%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"13.680275885718961%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><rect x=\"13.680275885718961%\" y=\"40\" height=\"20\" width=\"2.1838500963156093e-07%\" onmouseover=\"document.getElementById('_tp_jfmrippheldubajfpcwc_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_jfmrippheldubajfpcwc_ind_0').style.opacity = 1;document.getElementById('_fb_jfmrippheldubajfpcwc_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_jfmrippheldubajfpcwc_ind_0').style.textDecoration = 'none';document.getElementById('_fs_jfmrippheldubajfpcwc_ind_0').style.opacity = 0;document.getElementById('_fb_jfmrippheldubajfpcwc_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"13.68027610410397%\" width=\"33.30024128833418%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"13.68027610410397%\" x2=\"41.1056937536755%\" y1=\"60\" y2=\"60\" id=\"_fb_jfmrippheldubajfpcwc_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"27.39298492888974%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_jfmrippheldubajfpcwc_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-5.187</text><svg x=\"13.68027610410397%\" y=\"40\" height=\"20\" width=\"27.425417649571532%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">humiliated</text> </svg></svg><line x1=\"41.1056937536755%\" x2=\"43.417534181537704%\" y1=\"60\" y2=\"60\" id=\"_fb_jfmrippheldubajfpcwc_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"42.26161396760661%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_jfmrippheldubajfpcwc_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.437</text><svg x=\"41.1056937536755%\" y=\"40\" height=\"20\" width=\"2.311840427862201%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"43.417534181537704%\" x2=\"44.78276600419124%\" y1=\"60\" y2=\"60\" id=\"_fb_jfmrippheldubajfpcwc_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"44.10015009286447%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_jfmrippheldubajfpcwc_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.258</text><svg x=\"43.417534181537704%\" y=\"40\" height=\"20\" width=\"1.3652318226535343%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">didn</text> </svg></svg><line x1=\"44.78276600419124%\" x2=\"46.004094061876806%\" y1=\"60\" y2=\"60\" id=\"_fb_jfmrippheldubajfpcwc_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"45.39343003303402%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_jfmrippheldubajfpcwc_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.231</text><svg x=\"44.78276600419124%\" y=\"40\" height=\"20\" width=\"1.221328057685568%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">t</text> </svg></svg><line x1=\"46.004094061876806%\" x2=\"46.98051487769105%\" y1=\"60\" y2=\"60\" id=\"_fb_jfmrippheldubajfpcwc_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"46.49230446978393%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_jfmrippheldubajfpcwc_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.185</text><svg x=\"46.004094061876806%\" y=\"40\" height=\"20\" width=\"0.9764208158142438%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"46.98051487769105%\" x2=\"46.980517392438145%\" y1=\"60\" y2=\"60\" id=\"_fb_jfmrippheldubajfpcwc_ind_6\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"46.9805161350646%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_jfmrippheldubajfpcwc_ind_6\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"46.98051487769105%\" y=\"40\" height=\"20\" width=\"2.514747095005987e-06%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"41.1056937536755%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"41.1056937536755%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"41.1056937536755%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"41.1056937536755%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"41.1056937536755%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"41.1056937536755%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"41.1056937536755%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"41.1056937536755%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"43.417534181537704%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"43.417534181537704%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"43.417534181537704%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"43.417534181537704%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"43.417534181537704%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"43.417534181537704%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"43.417534181537704%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"43.417534181537704%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"44.78276600419124%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"44.78276600419124%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"44.78276600419124%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"44.78276600419124%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"44.78276600419124%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"44.78276600419124%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"44.78276600419124%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"44.78276600419124%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"46.004094061876806%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"46.004094061876806%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"46.004094061876806%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"46.004094061876806%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"46.004094061876806%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"46.004094061876806%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"46.004094061876806%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"46.004094061876806%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"46.98051487769105%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"46.98051487769105%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"46.98051487769105%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"46.98051487769105%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"46.98051487769105%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"46.98051487769105%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"46.98051487769105%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"46.98051487769105%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"13.68027610410397%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"46.980517392438145%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"41.1056937536755%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"13.68027610410397%\" y=\"40\" height=\"20\" width=\"27.425417649571532%\" onmouseover=\"document.getElementById('_tp_jfmrippheldubajfpcwc_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_jfmrippheldubajfpcwc_ind_5').style.opacity = 1;document.getElementById('_fb_jfmrippheldubajfpcwc_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_jfmrippheldubajfpcwc_ind_5').style.textDecoration = 'none';document.getElementById('_fs_jfmrippheldubajfpcwc_ind_5').style.opacity = 0;document.getElementById('_fb_jfmrippheldubajfpcwc_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"43.417534181537704%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"41.1056937536755%\" y=\"40\" height=\"20\" width=\"2.311840427862201%\" onmouseover=\"document.getElementById('_tp_jfmrippheldubajfpcwc_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_jfmrippheldubajfpcwc_ind_4').style.opacity = 1;document.getElementById('_fb_jfmrippheldubajfpcwc_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_jfmrippheldubajfpcwc_ind_4').style.textDecoration = 'none';document.getElementById('_fs_jfmrippheldubajfpcwc_ind_4').style.opacity = 0;document.getElementById('_fb_jfmrippheldubajfpcwc_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"44.78276600419124%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"43.417534181537704%\" y=\"40\" height=\"20\" width=\"1.3652318226535343%\" onmouseover=\"document.getElementById('_tp_jfmrippheldubajfpcwc_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_jfmrippheldubajfpcwc_ind_2').style.opacity = 1;document.getElementById('_fb_jfmrippheldubajfpcwc_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_jfmrippheldubajfpcwc_ind_2').style.textDecoration = 'none';document.getElementById('_fs_jfmrippheldubajfpcwc_ind_2').style.opacity = 0;document.getElementById('_fb_jfmrippheldubajfpcwc_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"46.004094061876806%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"44.78276600419124%\" y=\"40\" height=\"20\" width=\"1.221328057685568%\" onmouseover=\"document.getElementById('_tp_jfmrippheldubajfpcwc_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_jfmrippheldubajfpcwc_ind_3').style.opacity = 1;document.getElementById('_fb_jfmrippheldubajfpcwc_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_jfmrippheldubajfpcwc_ind_3').style.textDecoration = 'none';document.getElementById('_fs_jfmrippheldubajfpcwc_ind_3').style.opacity = 0;document.getElementById('_fb_jfmrippheldubajfpcwc_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"46.98051487769105%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"46.004094061876806%\" y=\"40\" height=\"20\" width=\"0.9764208158142438%\" onmouseover=\"document.getElementById('_tp_jfmrippheldubajfpcwc_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_jfmrippheldubajfpcwc_ind_1').style.opacity = 1;document.getElementById('_fb_jfmrippheldubajfpcwc_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_jfmrippheldubajfpcwc_ind_1').style.textDecoration = 'none';document.getElementById('_fs_jfmrippheldubajfpcwc_ind_1').style.opacity = 0;document.getElementById('_fb_jfmrippheldubajfpcwc_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"46.98051487769105%\" y=\"40\" height=\"20\" width=\"2.514747095005987e-06%\" onmouseover=\"document.getElementById('_tp_jfmrippheldubajfpcwc_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_jfmrippheldubajfpcwc_ind_6').style.opacity = 1;document.getElementById('_fb_jfmrippheldubajfpcwc_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_jfmrippheldubajfpcwc_ind_6').style.textDecoration = 'none';document.getElementById('_fs_jfmrippheldubajfpcwc_ind_6').style.opacity = 0;document.getElementById('_fb_jfmrippheldubajfpcwc_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_jfmrippheldubajfpcwc_ind_0'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_jfmrippheldubajfpcwc_ind_0').style.opacity = 1; document.getElementById('_fs_jfmrippheldubajfpcwc_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_jfmrippheldubajfpcwc_ind_0').style.opacity = 0; document.getElementById('_fs_jfmrippheldubajfpcwc_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.185</div\n",
|
|
" ><div id='_tp_jfmrippheldubajfpcwc_ind_1'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.022539116656763607); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_jfmrippheldubajfpcwc_ind_1').style.opacity = 1; document.getElementById('_fs_jfmrippheldubajfpcwc_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_jfmrippheldubajfpcwc_ind_1').style.opacity = 0; document.getElementById('_fs_jfmrippheldubajfpcwc_ind_1').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.258</div\n",
|
|
" ><div id='_tp_jfmrippheldubajfpcwc_ind_2'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03042186571598325); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_jfmrippheldubajfpcwc_ind_2').style.opacity = 1; document.getElementById('_fs_jfmrippheldubajfpcwc_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_jfmrippheldubajfpcwc_ind_2').style.opacity = 0; document.getElementById('_fs_jfmrippheldubajfpcwc_ind_2').style.opacity = 0;\"\n",
|
|
" >didn</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.231</div\n",
|
|
" ><div id='_tp_jfmrippheldubajfpcwc_ind_3'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03042186571598325); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_jfmrippheldubajfpcwc_ind_3').style.opacity = 1; document.getElementById('_fs_jfmrippheldubajfpcwc_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_jfmrippheldubajfpcwc_ind_3').style.opacity = 0; document.getElementById('_fs_jfmrippheldubajfpcwc_ind_3').style.opacity = 0;\"\n",
|
|
" >t </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.437</div\n",
|
|
" ><div id='_tp_jfmrippheldubajfpcwc_ind_4'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.06195286195286191); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_jfmrippheldubajfpcwc_ind_4').style.opacity = 1; document.getElementById('_fs_jfmrippheldubajfpcwc_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_jfmrippheldubajfpcwc_ind_4').style.opacity = 0; document.getElementById('_fs_jfmrippheldubajfpcwc_ind_4').style.opacity = 0;\"\n",
|
|
" >feel </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-5.187</div\n",
|
|
" ><div id='_tp_jfmrippheldubajfpcwc_ind_5'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.7556347791641909); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_jfmrippheldubajfpcwc_ind_5').style.opacity = 1; document.getElementById('_fs_jfmrippheldubajfpcwc_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_jfmrippheldubajfpcwc_ind_5').style.opacity = 0; document.getElementById('_fs_jfmrippheldubajfpcwc_ind_5').style.opacity = 0;\"\n",
|
|
" >humiliated</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_jfmrippheldubajfpcwc_ind_6'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_jfmrippheldubajfpcwc_ind_6').style.opacity = 1; document.getElementById('_fs_jfmrippheldubajfpcwc_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_jfmrippheldubajfpcwc_ind_6').style.opacity = 0; document.getElementById('_fs_jfmrippheldubajfpcwc_ind_6').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_bwovfuqhtsyfngeozrqz_output_5_zoom' style='display: none;'><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"46.290471479253604%\" y1=\"33\" x2=\"46.290471479253604%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"46.290471479253604%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-5</text><line x1=\"33.05965996556933%\" y1=\"33\" x2=\"33.05965996556933%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"33.05965996556933%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6</text><line x1=\"19.828848451885055%\" y1=\"33\" x2=\"19.828848451885055%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"19.828848451885055%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7</text><line x1=\"59.52128299293788%\" y1=\"33\" x2=\"59.52128299293788%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"59.52128299293788%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"72.75209450662214%\" y1=\"33\" x2=\"72.75209450662214%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"72.75209450662214%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-3</text><line x1=\"85.98290602030642%\" y1=\"33\" x2=\"85.98290602030642%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"85.98290602030642%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2</text><line x1=\"91.66666599887917%\" y1=\"33\" x2=\"91.66666599887917%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"91.66666599887917%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1.57041</text><text x=\"91.66666599887917%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1.57041</text><text x=\"91.66666599887917%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"8.333333868812733%\" y1=\"33\" x2=\"8.333333868812733%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"8.333333868812733%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7.86884</text><text x=\"8.333333868812733%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7.86884</text><text x=\"8.333333868812733%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">surprise</tspan>(inputs)</text><rect x=\"8.333333322307668%\" width=\"5.465050696844326e-07%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"8.333333322307668%\" x2=\"8.333333868812733%\" y1=\"60\" y2=\"60\" id=\"_fb_qosrqdventidrxfbayhd_ind_0\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.333333595560202%\" y=\"71\" font-size=\"12px\" id=\"_fs_qosrqdventidrxfbayhd_ind_0\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"8.333333322307668%\" y=\"40\" height=\"20\" width=\"5.465050652020409e-07%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><rect transform=\"translate(-8,0)\" x=\"8.333333868812733%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.333333322307668%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><rect x=\"8.333333322307668%\" y=\"40\" height=\"20\" width=\"5.465050652020409e-07%\" onmouseover=\"document.getElementById('_tp_qosrqdventidrxfbayhd_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_qosrqdventidrxfbayhd_ind_0').style.opacity = 1;document.getElementById('_fb_qosrqdventidrxfbayhd_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qosrqdventidrxfbayhd_ind_0').style.textDecoration = 'none';document.getElementById('_fs_qosrqdventidrxfbayhd_ind_0').style.opacity = 0;document.getElementById('_fb_qosrqdventidrxfbayhd_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"8.333333868812733%\" width=\"83.3333326765715%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"8.333333868812733%\" x2=\"76.96501233014283%\" y1=\"60\" y2=\"60\" id=\"_fb_qosrqdventidrxfbayhd_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"42.64917309947778%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_qosrqdventidrxfbayhd_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-5.187</text><svg x=\"8.333333868812733%\" y=\"40\" height=\"20\" width=\"68.6316784613301%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">humiliated</text> </svg></svg><line x1=\"76.96501233014283%\" x2=\"82.75035682065496%\" y1=\"60\" y2=\"60\" id=\"_fb_qosrqdventidrxfbayhd_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"79.85768457539889%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_qosrqdventidrxfbayhd_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.437</text><svg x=\"76.96501233014283%\" y=\"40\" height=\"20\" width=\"5.785344490512131%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"82.75035682065496%\" x2=\"86.16682809102034%\" y1=\"60\" y2=\"60\" id=\"_fb_qosrqdventidrxfbayhd_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"84.45859245583765%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_qosrqdventidrxfbayhd_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.258</text><svg x=\"82.75035682065496%\" y=\"40\" height=\"20\" width=\"3.4164712703653777%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">didn</text> </svg></svg><line x1=\"86.16682809102034%\" x2=\"89.22318244164174%\" y1=\"60\" y2=\"60\" id=\"_fb_qosrqdventidrxfbayhd_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"87.69500526633104%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_qosrqdventidrxfbayhd_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.231</text><svg x=\"86.16682809102034%\" y=\"40\" height=\"20\" width=\"3.0563543506214046%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">t</text> </svg></svg><line x1=\"89.22318244164174%\" x2=\"91.66666025226898%\" y1=\"60\" y2=\"60\" id=\"_fb_qosrqdventidrxfbayhd_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"90.44492134695537%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_qosrqdventidrxfbayhd_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.185</text><svg x=\"89.22318244164174%\" y=\"40\" height=\"20\" width=\"2.4434778106272432%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"91.66666025226898%\" x2=\"91.66666654538423%\" y1=\"60\" y2=\"60\" id=\"_fb_qosrqdventidrxfbayhd_ind_6\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.66666339882661%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_qosrqdventidrxfbayhd_ind_6\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"91.66666025226898%\" y=\"40\" height=\"20\" width=\"6.293115248467984e-06%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"76.96501233014283%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"76.96501233014283%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"76.96501233014283%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"76.96501233014283%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"76.96501233014283%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"76.96501233014283%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"76.96501233014283%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"76.96501233014283%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"82.75035682065496%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"82.75035682065496%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"82.75035682065496%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"82.75035682065496%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"82.75035682065496%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"82.75035682065496%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"82.75035682065496%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"82.75035682065496%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"86.16682809102034%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"86.16682809102034%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"86.16682809102034%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"86.16682809102034%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"86.16682809102034%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"86.16682809102034%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"86.16682809102034%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"86.16682809102034%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"89.22318244164174%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"89.22318244164174%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"89.22318244164174%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"89.22318244164174%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"89.22318244164174%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"89.22318244164174%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"89.22318244164174%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"89.22318244164174%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.66666025226898%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.66666025226898%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.66666025226898%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.66666025226898%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.66666025226898%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.66666025226898%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.66666025226898%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.66666025226898%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"8.333333868812733%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66666654538423%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"76.96501233014283%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"8.333333868812733%\" y=\"40\" height=\"20\" width=\"68.6316784613301%\" onmouseover=\"document.getElementById('_tp_qosrqdventidrxfbayhd_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_qosrqdventidrxfbayhd_ind_5').style.opacity = 1;document.getElementById('_fb_qosrqdventidrxfbayhd_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qosrqdventidrxfbayhd_ind_5').style.textDecoration = 'none';document.getElementById('_fs_qosrqdventidrxfbayhd_ind_5').style.opacity = 0;document.getElementById('_fb_qosrqdventidrxfbayhd_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"82.75035682065496%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"76.96501233014283%\" y=\"40\" height=\"20\" width=\"5.785344490512131%\" onmouseover=\"document.getElementById('_tp_qosrqdventidrxfbayhd_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_qosrqdventidrxfbayhd_ind_4').style.opacity = 1;document.getElementById('_fb_qosrqdventidrxfbayhd_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qosrqdventidrxfbayhd_ind_4').style.textDecoration = 'none';document.getElementById('_fs_qosrqdventidrxfbayhd_ind_4').style.opacity = 0;document.getElementById('_fb_qosrqdventidrxfbayhd_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"86.16682809102034%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"82.75035682065496%\" y=\"40\" height=\"20\" width=\"3.4164712703653777%\" onmouseover=\"document.getElementById('_tp_qosrqdventidrxfbayhd_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_qosrqdventidrxfbayhd_ind_2').style.opacity = 1;document.getElementById('_fb_qosrqdventidrxfbayhd_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qosrqdventidrxfbayhd_ind_2').style.textDecoration = 'none';document.getElementById('_fs_qosrqdventidrxfbayhd_ind_2').style.opacity = 0;document.getElementById('_fb_qosrqdventidrxfbayhd_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"89.22318244164174%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"86.16682809102034%\" y=\"40\" height=\"20\" width=\"3.0563543506214046%\" onmouseover=\"document.getElementById('_tp_qosrqdventidrxfbayhd_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_qosrqdventidrxfbayhd_ind_3').style.opacity = 1;document.getElementById('_fb_qosrqdventidrxfbayhd_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qosrqdventidrxfbayhd_ind_3').style.textDecoration = 'none';document.getElementById('_fs_qosrqdventidrxfbayhd_ind_3').style.opacity = 0;document.getElementById('_fb_qosrqdventidrxfbayhd_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66666025226898%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"89.22318244164174%\" y=\"40\" height=\"20\" width=\"2.4434778106272432%\" onmouseover=\"document.getElementById('_tp_qosrqdventidrxfbayhd_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_qosrqdventidrxfbayhd_ind_1').style.opacity = 1;document.getElementById('_fb_qosrqdventidrxfbayhd_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qosrqdventidrxfbayhd_ind_1').style.textDecoration = 'none';document.getElementById('_fs_qosrqdventidrxfbayhd_ind_1').style.opacity = 0;document.getElementById('_fb_qosrqdventidrxfbayhd_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"91.66666025226898%\" y=\"40\" height=\"20\" width=\"6.293115248467984e-06%\" onmouseover=\"document.getElementById('_tp_qosrqdventidrxfbayhd_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_qosrqdventidrxfbayhd_ind_6').style.opacity = 1;document.getElementById('_fb_qosrqdventidrxfbayhd_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qosrqdventidrxfbayhd_ind_6').style.textDecoration = 'none';document.getElementById('_fs_qosrqdventidrxfbayhd_ind_6').style.opacity = 0;document.getElementById('_fb_qosrqdventidrxfbayhd_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_qosrqdventidrxfbayhd_ind_0'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_qosrqdventidrxfbayhd_ind_0').style.opacity = 1; document.getElementById('_fs_qosrqdventidrxfbayhd_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_qosrqdventidrxfbayhd_ind_0').style.opacity = 0; document.getElementById('_fs_qosrqdventidrxfbayhd_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.185</div\n",
|
|
" ><div id='_tp_qosrqdventidrxfbayhd_ind_1'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03042186571598325); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_qosrqdventidrxfbayhd_ind_1').style.opacity = 1; document.getElementById('_fs_qosrqdventidrxfbayhd_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_qosrqdventidrxfbayhd_ind_1').style.opacity = 0; document.getElementById('_fs_qosrqdventidrxfbayhd_ind_1').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.258</div\n",
|
|
" ><div id='_tp_qosrqdventidrxfbayhd_ind_2'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.04618736383442258); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_qosrqdventidrxfbayhd_ind_2').style.opacity = 1; document.getElementById('_fs_qosrqdventidrxfbayhd_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_qosrqdventidrxfbayhd_ind_2').style.opacity = 0; document.getElementById('_fs_qosrqdventidrxfbayhd_ind_2').style.opacity = 0;\"\n",
|
|
" >didn</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.231</div\n",
|
|
" ><div id='_tp_qosrqdventidrxfbayhd_ind_3'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03830461477520309); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_qosrqdventidrxfbayhd_ind_3').style.opacity = 1; document.getElementById('_fs_qosrqdventidrxfbayhd_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_qosrqdventidrxfbayhd_ind_3').style.opacity = 0; document.getElementById('_fs_qosrqdventidrxfbayhd_ind_3').style.opacity = 0;\"\n",
|
|
" >t </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.437</div\n",
|
|
" ><div id='_tp_qosrqdventidrxfbayhd_ind_4'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.07771836007130117); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_qosrqdventidrxfbayhd_ind_4').style.opacity = 1; document.getElementById('_fs_qosrqdventidrxfbayhd_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_qosrqdventidrxfbayhd_ind_4').style.opacity = 0; document.getElementById('_fs_qosrqdventidrxfbayhd_ind_4').style.opacity = 0;\"\n",
|
|
" >feel </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-5.187</div\n",
|
|
" ><div id='_tp_qosrqdventidrxfbayhd_ind_5'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 1.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_qosrqdventidrxfbayhd_ind_5').style.opacity = 1; document.getElementById('_fs_qosrqdventidrxfbayhd_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_qosrqdventidrxfbayhd_ind_5').style.opacity = 0; document.getElementById('_fs_qosrqdventidrxfbayhd_ind_5').style.opacity = 0;\"\n",
|
|
" >humiliated</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_qosrqdventidrxfbayhd_ind_6'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_qosrqdventidrxfbayhd_ind_6').style.opacity = 1; document.getElementById('_fs_qosrqdventidrxfbayhd_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_qosrqdventidrxfbayhd_ind_6').style.opacity = 0; document.getElementById('_fs_qosrqdventidrxfbayhd_ind_6').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div></div>"
|
|
],
|
|
"text/plain": [
|
|
"<IPython.core.display.HTML object>"
|
|
]
|
|
},
|
|
"metadata": {},
|
|
"output_type": "display_data"
|
|
},
|
|
{
|
|
"data": {
|
|
"text/html": [
|
|
"\n",
|
|
"<br>\n",
|
|
"<hr style=\"height: 1px; background-color: #fff; border: none; margin-top: 18px; margin-bottom: 18px; border-top: 1px dashed #ccc;\"\">\n",
|
|
"<div align=\"center\" style=\"margin-top: -35px;\"><div style=\"display: inline-block; background: #fff; padding: 5px; color: #999; font-family: monospace\">[1]</div>\n",
|
|
"</div>\n",
|
|
" "
|
|
],
|
|
"text/plain": [
|
|
"<IPython.core.display.HTML object>"
|
|
]
|
|
},
|
|
"metadata": {},
|
|
"output_type": "display_data"
|
|
},
|
|
{
|
|
"data": {
|
|
"text/html": [
|
|
"<div align='center'>\n",
|
|
"<script>\n",
|
|
" document._hover_bgksouvlavqavwefwxrm = '_tp_bgksouvlavqavwefwxrm_output_0';\n",
|
|
" document._zoom_bgksouvlavqavwefwxrm = undefined;\n",
|
|
" function _output_onclick_bgksouvlavqavwefwxrm(i) {\n",
|
|
" var next_id = undefined;\n",
|
|
" \n",
|
|
" if (document._zoom_bgksouvlavqavwefwxrm !== undefined) {\n",
|
|
" document.getElementById(document._zoom_bgksouvlavqavwefwxrm+ '_zoom').style.display = 'none';\n",
|
|
" \n",
|
|
" if (document._zoom_bgksouvlavqavwefwxrm === '_tp_bgksouvlavqavwefwxrm_output_' + i) {\n",
|
|
" document.getElementById(document._zoom_bgksouvlavqavwefwxrm).style.display = 'block';\n",
|
|
" document.getElementById(document._zoom_bgksouvlavqavwefwxrm+'_name').style.background = '#dddddd';\n",
|
|
" } else {\n",
|
|
" document.getElementById(document._zoom_bgksouvlavqavwefwxrm).style.display = 'none';\n",
|
|
" document.getElementById(document._zoom_bgksouvlavqavwefwxrm+'_name').style.background = '#ffffff';\n",
|
|
" }\n",
|
|
" }\n",
|
|
" if (document._zoom_bgksouvlavqavwefwxrm !== '_tp_bgksouvlavqavwefwxrm_output_' + i) {\n",
|
|
" next_id = '_tp_bgksouvlavqavwefwxrm_output_' + i;\n",
|
|
" document.getElementById(next_id).style.display = 'none';\n",
|
|
" document.getElementById(next_id + '_zoom').style.display = 'block';\n",
|
|
" document.getElementById(next_id+'_name').style.background = '#bbbbbb';\n",
|
|
" }\n",
|
|
" document._zoom_bgksouvlavqavwefwxrm = next_id;\n",
|
|
" }\n",
|
|
" function _output_onmouseover_bgksouvlavqavwefwxrm(i, el) {\n",
|
|
" if (document._zoom_bgksouvlavqavwefwxrm !== undefined) { return; }\n",
|
|
" if (document._hover_bgksouvlavqavwefwxrm !== undefined) {\n",
|
|
" document.getElementById(document._hover_bgksouvlavqavwefwxrm + '_name').style.background = '#ffffff';\n",
|
|
" document.getElementById(document._hover_bgksouvlavqavwefwxrm).style.display = 'none';\n",
|
|
" }\n",
|
|
" document.getElementById('_tp_bgksouvlavqavwefwxrm_output_' + i).style.display = 'block';\n",
|
|
" el.style.background = '#dddddd';\n",
|
|
" document._hover_bgksouvlavqavwefwxrm = '_tp_bgksouvlavqavwefwxrm_output_' + i;\n",
|
|
" }\n",
|
|
"</script>\n",
|
|
"<div style=\"color: rgb(120,120,120); font-size: 12px;\">outputs</div>\n",
|
|
"<div style=\"display: inline; background: #dddddd; border-radius: 3px; padding: 0px\" id=\"_tp_bgksouvlavqavwefwxrm_output_0_name\"\n",
|
|
" onclick=\"_output_onclick_bgksouvlavqavwefwxrm(0)\"\n",
|
|
" onmouseover=\"_output_onmouseover_bgksouvlavqavwefwxrm(0, this);\">sadness</div>\n",
|
|
"<div style=\"display: inline; background: #ffffff; border-radius: 3px; padding: 0px\" id=\"_tp_bgksouvlavqavwefwxrm_output_1_name\"\n",
|
|
" onclick=\"_output_onclick_bgksouvlavqavwefwxrm(1)\"\n",
|
|
" onmouseover=\"_output_onmouseover_bgksouvlavqavwefwxrm(1, this);\">joy</div>\n",
|
|
"<div style=\"display: inline; background: #ffffff; border-radius: 3px; padding: 0px\" id=\"_tp_bgksouvlavqavwefwxrm_output_2_name\"\n",
|
|
" onclick=\"_output_onclick_bgksouvlavqavwefwxrm(2)\"\n",
|
|
" onmouseover=\"_output_onmouseover_bgksouvlavqavwefwxrm(2, this);\">love</div>\n",
|
|
"<div style=\"display: inline; background: #ffffff; border-radius: 3px; padding: 0px\" id=\"_tp_bgksouvlavqavwefwxrm_output_3_name\"\n",
|
|
" onclick=\"_output_onclick_bgksouvlavqavwefwxrm(3)\"\n",
|
|
" onmouseover=\"_output_onmouseover_bgksouvlavqavwefwxrm(3, this);\">anger</div>\n",
|
|
"<div style=\"display: inline; background: #ffffff; border-radius: 3px; padding: 0px\" id=\"_tp_bgksouvlavqavwefwxrm_output_4_name\"\n",
|
|
" onclick=\"_output_onclick_bgksouvlavqavwefwxrm(4)\"\n",
|
|
" onmouseover=\"_output_onmouseover_bgksouvlavqavwefwxrm(4, this);\">fear</div>\n",
|
|
"<div style=\"display: inline; background: #ffffff; border-radius: 3px; padding: 0px\" id=\"_tp_bgksouvlavqavwefwxrm_output_5_name\"\n",
|
|
" onclick=\"_output_onclick_bgksouvlavqavwefwxrm(5)\"\n",
|
|
" onmouseover=\"_output_onmouseover_bgksouvlavqavwefwxrm(5, this);\">surprise</div><br><br><div id='_tp_bgksouvlavqavwefwxrm_output_0' style='display: block';><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"49.99634084343776%\" y1=\"33\" x2=\"49.99634084343776%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"49.99634084343776%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1</text><line x1=\"34.135128947971666%\" y1=\"33\" x2=\"34.135128947971666%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"34.135128947971666%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"18.273917052505578%\" y1=\"33\" x2=\"18.273917052505578%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"18.273917052505578%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7</text><line x1=\"65.85755273890385%\" y1=\"33\" x2=\"65.85755273890385%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"65.85755273890385%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">2</text><line x1=\"81.71876463436993%\" y1=\"33\" x2=\"81.71876463436993%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"81.71876463436993%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">5</text><line x1=\"45.86777473224104%\" y1=\"33\" x2=\"45.86777473224104%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"45.86777473224104%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1.78088</text><text x=\"45.86777473224104%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1.78088</text><text x=\"45.86777473224104%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"83.5897343127328%\" y1=\"33\" x2=\"83.5897343127328%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"83.5897343127328%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">5.35388</text><text x=\"83.5897343127328%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">5.35388</text><text x=\"83.5897343127328%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">sadness</tspan>(inputs)</text><rect x=\"35.336050001951634%\" width=\"48.253684310781175%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"52.32287103499024%\" x2=\"83.5897343127328%\" y1=\"60\" y2=\"60\" id=\"_fb_gjutweqqglxxorecrnwp_ind_5\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"67.95630267386153%\" y=\"71\" font-size=\"12px\" id=\"_fs_gjutweqqglxxorecrnwp_ind_5\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">5.914</text><svg x=\"52.32287103499024%\" y=\"40\" height=\"20\" width=\"31.26686327774256%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeless</text> </svg></svg><line x1=\"37.83129167206909%\" x2=\"52.32287103499024%\" y1=\"60\" y2=\"60\" id=\"_fb_gjutweqqglxxorecrnwp_ind_3\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"45.077081353529664%\" y=\"71\" font-size=\"12px\" id=\"_fs_gjutweqqglxxorecrnwp_ind_3\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">2.741</text><svg x=\"37.83129167206909%\" y=\"40\" height=\"20\" width=\"14.49157936292115%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feeling</text> </svg></svg><line x1=\"36.518288341834065%\" x2=\"37.83129167206909%\" y1=\"60\" y2=\"60\" id=\"_fb_gjutweqqglxxorecrnwp_ind_4\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"37.17479000695158%\" y=\"71\" font-size=\"12px\" id=\"_fs_gjutweqqglxxorecrnwp_ind_4\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.248</text><svg x=\"36.518288341834065%\" y=\"40\" height=\"20\" width=\"1.313003330235027%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><line x1=\"36.102272308778886%\" x2=\"36.518288341834065%\" y1=\"60\" y2=\"60\" id=\"_fb_gjutweqqglxxorecrnwp_ind_6\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"36.31028032530648%\" y=\"71\" font-size=\"12px\" id=\"_fs_gjutweqqglxxorecrnwp_ind_6\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.079</text><svg x=\"36.102272308778886%\" y=\"40\" height=\"20\" width=\"0.416016033055179%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to so</text> </svg></svg><line x1=\"35.76659766368309%\" x2=\"36.102272308778886%\" y1=\"60\" y2=\"60\" id=\"_fb_gjutweqqglxxorecrnwp_ind_1\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"35.93443498623099%\" y=\"71\" font-size=\"12px\" id=\"_fs_gjutweqqglxxorecrnwp_ind_1\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.063</text><svg x=\"35.76659766368309%\" y=\"40\" height=\"20\" width=\"0.3356746450957928%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">can go</text> </svg></svg><line x1=\"35.48781987797903%\" x2=\"35.76659766368309%\" y1=\"60\" y2=\"60\" id=\"_fb_gjutweqqglxxorecrnwp_ind_7\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"35.62720877083106%\" y=\"71\" font-size=\"12px\" id=\"_fs_gjutweqqglxxorecrnwp_ind_7\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.053</text><svg x=\"35.48781987797903%\" y=\"40\" height=\"20\" width=\"0.2787777857040652%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">damned</text> </svg></svg><line x1=\"35.336050001951634%\" x2=\"35.48781987797903%\" y1=\"60\" y2=\"60\" id=\"_fb_gjutweqqglxxorecrnwp_ind_2\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"35.411934939965334%\" y=\"71\" font-size=\"12px\" id=\"_fs_gjutweqqglxxorecrnwp_ind_2\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.029</text><svg x=\"35.336050001951634%\" y=\"40\" height=\"20\" width=\"0.15176987602739445%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"52.32287103499024%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"52.32287103499024%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"52.32287103499024%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"52.32287103499024%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"52.32287103499024%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"52.32287103499024%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"52.32287103499024%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"52.32287103499024%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"37.83129167206909%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"37.83129167206909%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"37.83129167206909%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"37.83129167206909%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"37.83129167206909%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"37.83129167206909%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"37.83129167206909%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"37.83129167206909%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"36.518288341834065%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"36.518288341834065%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"36.518288341834065%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"36.518288341834065%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"36.518288341834065%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"36.518288341834065%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"36.518288341834065%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"36.518288341834065%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"36.102272308778886%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"36.102272308778886%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"36.102272308778886%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"36.102272308778886%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"36.102272308778886%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"36.102272308778886%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"36.102272308778886%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"36.102272308778886%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"35.76659766368309%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"35.76659766368309%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"35.76659766368309%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"35.76659766368309%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"35.76659766368309%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"35.76659766368309%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"35.76659766368309%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"35.76659766368309%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"35.48781987797903%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"35.48781987797903%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"35.48781987797903%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"35.48781987797903%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"35.48781987797903%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"35.48781987797903%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"35.48781987797903%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"35.48781987797903%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"83.5897343127328%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"35.336050001951634%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"83.5897343127328%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"52.32287103499024%\" y=\"40\" height=\"20\" width=\"31.26686327774256%\" onmouseover=\"document.getElementById('_tp_gjutweqqglxxorecrnwp_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_5').style.opacity = 1;document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gjutweqqglxxorecrnwp_ind_5').style.textDecoration = 'none';document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_5').style.opacity = 0;document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"52.32287103499024%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"37.83129167206909%\" y=\"40\" height=\"20\" width=\"14.49157936292115%\" onmouseover=\"document.getElementById('_tp_gjutweqqglxxorecrnwp_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_3').style.opacity = 1;document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gjutweqqglxxorecrnwp_ind_3').style.textDecoration = 'none';document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_3').style.opacity = 0;document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"37.83129167206909%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"36.518288341834065%\" y=\"40\" height=\"20\" width=\"1.313003330235027%\" onmouseover=\"document.getElementById('_tp_gjutweqqglxxorecrnwp_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_4').style.opacity = 1;document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gjutweqqglxxorecrnwp_ind_4').style.textDecoration = 'none';document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_4').style.opacity = 0;document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"36.518288341834065%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"36.102272308778886%\" y=\"40\" height=\"20\" width=\"0.416016033055179%\" onmouseover=\"document.getElementById('_tp_gjutweqqglxxorecrnwp_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_6').style.opacity = 1;document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gjutweqqglxxorecrnwp_ind_6').style.textDecoration = 'none';document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_6').style.opacity = 0;document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"36.102272308778886%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"35.76659766368309%\" y=\"40\" height=\"20\" width=\"0.3356746450957928%\" onmouseover=\"document.getElementById('_tp_gjutweqqglxxorecrnwp_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_1').style.opacity = 1;document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gjutweqqglxxorecrnwp_ind_1').style.textDecoration = 'none';document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_1').style.opacity = 0;document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"35.76659766368309%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"35.48781987797903%\" y=\"40\" height=\"20\" width=\"0.2787777857040652%\" onmouseover=\"document.getElementById('_tp_gjutweqqglxxorecrnwp_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_7').style.opacity = 1;document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gjutweqqglxxorecrnwp_ind_7').style.textDecoration = 'none';document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_7').style.opacity = 0;document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"35.336050001951634%\" y=\"40\" height=\"20\" width=\"0.15176987602739445%\" onmouseover=\"document.getElementById('_tp_gjutweqqglxxorecrnwp_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_2').style.opacity = 1;document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gjutweqqglxxorecrnwp_ind_2').style.textDecoration = 'none';document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_2').style.opacity = 0;document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"83.5897343127328%\" width=\"10.531724730289417%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"83.5897343127328%\" x2=\"90.46130405322837%\" y1=\"60\" y2=\"60\" id=\"_fb_gjutweqqglxxorecrnwp_ind_8\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"87.02551918298059%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_gjutweqqglxxorecrnwp_ind_8\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.3</text><svg x=\"83.5897343127328%\" y=\"40\" height=\"20\" width=\"6.871569740495573%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeful</text> </svg></svg><line x1=\"90.46130405322837%\" x2=\"91.37246724303156%\" y1=\"60\" y2=\"60\" id=\"_fb_gjutweqqglxxorecrnwp_ind_9\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"90.91688564812998%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_gjutweqqglxxorecrnwp_ind_9\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.172</text><svg x=\"90.46130405322837%\" y=\"40\" height=\"20\" width=\"0.9111631898031902%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">just from</text> </svg></svg><line x1=\"91.37246724303156%\" x2=\"92.0853705690964%\" y1=\"60\" y2=\"60\" id=\"_fb_gjutweqqglxxorecrnwp_ind_15\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.72891890606398%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_gjutweqqglxxorecrnwp_ind_15\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.135</text><svg x=\"91.37246724303156%\" y=\"40\" height=\"20\" width=\"0.7129033260648328%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">awake</text> </svg></svg><line x1=\"92.0853705690964%\" x2=\"92.71500935240556%\" y1=\"60\" y2=\"60\" id=\"_fb_gjutweqqglxxorecrnwp_ind_12\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"92.40018996075098%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_gjutweqqglxxorecrnwp_ind_12\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.119</text><svg x=\"92.0853705690964%\" y=\"40\" height=\"20\" width=\"0.6296387833091615%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">cares</text> </svg></svg><line x1=\"92.71500935240556%\" x2=\"93.29720392859403%\" y1=\"60\" y2=\"60\" id=\"_fb_gjutweqqglxxorecrnwp_ind_11\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"93.0061066404998%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_gjutweqqglxxorecrnwp_ind_11\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.11</text><svg x=\"92.71500935240556%\" y=\"40\" height=\"20\" width=\"0.5821945761884706%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">someone who</text> </svg></svg><line x1=\"93.29720392859403%\" x2=\"93.67209366583141%\" y1=\"60\" y2=\"60\" id=\"_fb_gjutweqqglxxorecrnwp_ind_10\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"93.48464879721271%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_gjutweqqglxxorecrnwp_ind_10\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.071</text><svg x=\"93.29720392859403%\" y=\"40\" height=\"20\" width=\"0.37488973723738184%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">being around</text> </svg></svg><line x1=\"93.67209366583141%\" x2=\"93.95801509428817%\" y1=\"60\" y2=\"60\" id=\"_fb_gjutweqqglxxorecrnwp_ind_14\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"93.81505438005979%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_gjutweqqglxxorecrnwp_ind_14\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.054</text><svg x=\"93.67209366583141%\" y=\"40\" height=\"20\" width=\"0.28592142845675994%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">is</text> </svg></svg><line x1=\"93.95801509428817%\" x2=\"94.08958538913076%\" y1=\"60\" y2=\"60\" id=\"_fb_gjutweqqglxxorecrnwp_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"94.02380024170947%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_gjutweqqglxxorecrnwp_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.025</text><svg x=\"93.95801509428817%\" y=\"40\" height=\"20\" width=\"0.13157029484258942%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"94.08958538913076%\" x2=\"94.12145872380862%\" y1=\"60\" y2=\"60\" id=\"_fb_gjutweqqglxxorecrnwp_ind_13\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"94.10552205646968%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_gjutweqqglxxorecrnwp_ind_13\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.006</text><svg x=\"94.08958538913076%\" y=\"40\" height=\"20\" width=\"0.03187333467785436%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">and</text> </svg></svg><line x1=\"94.12145872380862%\" x2=\"94.12145904302221%\" y1=\"60\" y2=\"60\" id=\"_fb_gjutweqqglxxorecrnwp_ind_16\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"94.12145888341541%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_gjutweqqglxxorecrnwp_ind_16\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"94.12145872380862%\" y=\"40\" height=\"20\" width=\"3.1921359777697944e-07%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"90.46130405322837%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.46130405322837%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.46130405322837%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.46130405322837%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.46130405322837%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.46130405322837%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.46130405322837%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.46130405322837%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.37246724303156%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.37246724303156%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.37246724303156%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.37246724303156%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.37246724303156%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.37246724303156%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.37246724303156%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.37246724303156%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"92.0853705690964%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"92.0853705690964%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"92.0853705690964%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"92.0853705690964%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"92.0853705690964%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"92.0853705690964%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"92.0853705690964%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"92.0853705690964%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"92.71500935240556%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"92.71500935240556%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"92.71500935240556%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"92.71500935240556%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"92.71500935240556%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"92.71500935240556%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"92.71500935240556%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"92.71500935240556%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"93.29720392859403%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"93.29720392859403%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"93.29720392859403%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"93.29720392859403%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"93.29720392859403%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"93.29720392859403%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"93.29720392859403%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"93.29720392859403%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"93.67209366583141%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"93.67209366583141%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"93.67209366583141%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"93.67209366583141%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"93.67209366583141%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"93.67209366583141%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"93.67209366583141%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"93.67209366583141%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"93.95801509428817%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"93.95801509428817%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"93.95801509428817%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"93.95801509428817%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"93.95801509428817%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"93.95801509428817%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"93.95801509428817%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"93.95801509428817%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"94.08958538913076%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"94.08958538913076%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"94.08958538913076%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"94.08958538913076%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"94.08958538913076%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"94.08958538913076%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"94.08958538913076%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"94.08958538913076%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"94.12145872380862%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"94.12145872380862%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"94.12145872380862%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"94.12145872380862%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"94.12145872380862%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"94.12145872380862%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"94.12145872380862%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"94.12145872380862%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"83.5897343127328%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"94.12145904302224%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"90.46130405322837%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"83.5897343127328%\" y=\"40\" height=\"20\" width=\"6.871569740495573%\" onmouseover=\"document.getElementById('_tp_gjutweqqglxxorecrnwp_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_8').style.opacity = 1;document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gjutweqqglxxorecrnwp_ind_8').style.textDecoration = 'none';document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_8').style.opacity = 0;document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.37246724303156%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"90.46130405322837%\" y=\"40\" height=\"20\" width=\"0.9111631898031902%\" onmouseover=\"document.getElementById('_tp_gjutweqqglxxorecrnwp_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_9').style.opacity = 1;document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gjutweqqglxxorecrnwp_ind_9').style.textDecoration = 'none';document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_9').style.opacity = 0;document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"92.0853705690964%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.37246724303156%\" y=\"40\" height=\"20\" width=\"0.7129033260648328%\" onmouseover=\"document.getElementById('_tp_gjutweqqglxxorecrnwp_ind_15').style.textDecoration = 'underline';document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_15').style.opacity = 1;document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_15').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gjutweqqglxxorecrnwp_ind_15').style.textDecoration = 'none';document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_15').style.opacity = 0;document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_15').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"92.71500935240556%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"92.0853705690964%\" y=\"40\" height=\"20\" width=\"0.6296387833091615%\" onmouseover=\"document.getElementById('_tp_gjutweqqglxxorecrnwp_ind_12').style.textDecoration = 'underline';document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_12').style.opacity = 1;document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_12').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gjutweqqglxxorecrnwp_ind_12').style.textDecoration = 'none';document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_12').style.opacity = 0;document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_12').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"93.29720392859403%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"92.71500935240556%\" y=\"40\" height=\"20\" width=\"0.5821945761884706%\" onmouseover=\"document.getElementById('_tp_gjutweqqglxxorecrnwp_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_11').style.opacity = 1;document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gjutweqqglxxorecrnwp_ind_11').style.textDecoration = 'none';document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_11').style.opacity = 0;document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"93.67209366583141%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"93.29720392859403%\" y=\"40\" height=\"20\" width=\"0.37488973723738184%\" onmouseover=\"document.getElementById('_tp_gjutweqqglxxorecrnwp_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_10').style.opacity = 1;document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gjutweqqglxxorecrnwp_ind_10').style.textDecoration = 'none';document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_10').style.opacity = 0;document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"93.95801509428817%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"93.67209366583141%\" y=\"40\" height=\"20\" width=\"0.28592142845675994%\" onmouseover=\"document.getElementById('_tp_gjutweqqglxxorecrnwp_ind_14').style.textDecoration = 'underline';document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_14').style.opacity = 1;document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_14').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gjutweqqglxxorecrnwp_ind_14').style.textDecoration = 'none';document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_14').style.opacity = 0;document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_14').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"94.08958538913076%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"93.95801509428817%\" y=\"40\" height=\"20\" width=\"0.13157029484258942%\" onmouseover=\"document.getElementById('_tp_gjutweqqglxxorecrnwp_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_0').style.opacity = 1;document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gjutweqqglxxorecrnwp_ind_0').style.textDecoration = 'none';document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_0').style.opacity = 0;document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"94.12145872380862%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"94.08958538913076%\" y=\"40\" height=\"20\" width=\"0.03187333467785436%\" onmouseover=\"document.getElementById('_tp_gjutweqqglxxorecrnwp_ind_13').style.textDecoration = 'underline';document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_13').style.opacity = 1;document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_13').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gjutweqqglxxorecrnwp_ind_13').style.textDecoration = 'none';document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_13').style.opacity = 0;document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_13').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"94.12145872380862%\" y=\"40\" height=\"20\" width=\"3.1921359777697944e-07%\" onmouseover=\"document.getElementById('_tp_gjutweqqglxxorecrnwp_ind_16').style.textDecoration = 'underline';document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_16').style.opacity = 1;document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_16').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gjutweqqglxxorecrnwp_ind_16').style.textDecoration = 'none';document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_16').style.opacity = 0;document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_16').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.025 / 2</div\n",
|
|
" ><div id='_tp_gjutweqqglxxorecrnwp_ind_0'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_0').style.opacity = 1; document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_0').style.opacity = 0; document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_0').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.063 / 2</div\n",
|
|
" ><div id='_tp_gjutweqqglxxorecrnwp_ind_1'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_1').style.opacity = 1; document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_1').style.opacity = 0; document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_1').style.opacity = 0;\"\n",
|
|
" >can go </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.029</div\n",
|
|
" ><div id='_tp_gjutweqqglxxorecrnwp_ind_2'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_2').style.opacity = 1; document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_2').style.opacity = 0; document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_2').style.opacity = 0;\"\n",
|
|
" >from </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>2.741</div\n",
|
|
" ><div id='_tp_gjutweqqglxxorecrnwp_ind_3'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.39302832244008706); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_3').style.opacity = 1; document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_3').style.opacity = 0; document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_3').style.opacity = 0;\"\n",
|
|
" >feeling </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.248</div\n",
|
|
" ><div id='_tp_gjutweqqglxxorecrnwp_ind_4'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.030421865715983164); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_4').style.opacity = 1; document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_4').style.opacity = 0; document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_4').style.opacity = 0;\"\n",
|
|
" >so </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>5.914</div\n",
|
|
" ><div id='_tp_gjutweqqglxxorecrnwp_ind_5'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.8581105169340464); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_5').style.opacity = 1; document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_5').style.opacity = 0; document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_5').style.opacity = 0;\"\n",
|
|
" >hopeless </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.079 / 2</div\n",
|
|
" ><div id='_tp_gjutweqqglxxorecrnwp_ind_6'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_6').style.opacity = 1; document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_6').style.opacity = 0; document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_6').style.opacity = 0;\"\n",
|
|
" >to so </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.053</div\n",
|
|
" ><div id='_tp_gjutweqqglxxorecrnwp_ind_7'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_7').style.opacity = 1; document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_7').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_7').style.opacity = 0; document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_7').style.opacity = 0;\"\n",
|
|
" >damned </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.3</div\n",
|
|
" ><div id='_tp_gjutweqqglxxorecrnwp_ind_8'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.1880768469003762); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_8').style.opacity = 1; document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_8').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_8').style.opacity = 0; document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_8').style.opacity = 0;\"\n",
|
|
" >hopeful </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.172 / 2</div\n",
|
|
" ><div id='_tp_gjutweqqglxxorecrnwp_ind_9'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.022539116656763607); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_9').style.opacity = 1; document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_9').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_9').style.opacity = 0; document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_9').style.opacity = 0;\"\n",
|
|
" >just from </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.071 / 2</div\n",
|
|
" ><div id='_tp_gjutweqqglxxorecrnwp_ind_10'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_10').style.opacity = 1; document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_10').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_10').style.opacity = 0; document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_10').style.opacity = 0;\"\n",
|
|
" >being around </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.11 / 2</div\n",
|
|
" ><div id='_tp_gjutweqqglxxorecrnwp_ind_11'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_11').style.opacity = 1; document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_11').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_11').style.opacity = 0; document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_11').style.opacity = 0;\"\n",
|
|
" >someone who </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.119</div\n",
|
|
" ><div id='_tp_gjutweqqglxxorecrnwp_ind_12'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_12').style.opacity = 1; document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_12').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_12').style.opacity = 0; document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_12').style.opacity = 0;\"\n",
|
|
" >cares </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.006</div\n",
|
|
" ><div id='_tp_gjutweqqglxxorecrnwp_ind_13'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_13').style.opacity = 1; document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_13').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_13').style.opacity = 0; document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_13').style.opacity = 0;\"\n",
|
|
" >and </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.054</div\n",
|
|
" ><div id='_tp_gjutweqqglxxorecrnwp_ind_14'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_14').style.opacity = 1; document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_14').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_14').style.opacity = 0; document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_14').style.opacity = 0;\"\n",
|
|
" >is </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.135</div\n",
|
|
" ><div id='_tp_gjutweqqglxxorecrnwp_ind_15'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_15').style.opacity = 1; document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_15').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_15').style.opacity = 0; document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_15').style.opacity = 0;\"\n",
|
|
" >awake</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_gjutweqqglxxorecrnwp_ind_16'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_16').style.opacity = 1; document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_16').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gjutweqqglxxorecrnwp_ind_16').style.opacity = 0; document.getElementById('_fs_gjutweqqglxxorecrnwp_ind_16').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_bgksouvlavqavwefwxrm_output_0_zoom' style='display: none;'><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"51.600167750735146%\" y1=\"33\" x2=\"51.600167750735146%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"51.600167750735146%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">2</text><line x1=\"36.61042025470369%\" y1=\"33\" x2=\"36.61042025470369%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"36.61042025470369%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0</text><line x1=\"21.62067275867224%\" y1=\"33\" x2=\"21.62067275867224%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"21.62067275867224%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2</text><line x1=\"66.5899152467666%\" y1=\"33\" x2=\"66.5899152467666%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"66.5899152467666%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">4</text><line x1=\"81.57966274279805%\" y1=\"33\" x2=\"81.57966274279805%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"81.57966274279805%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">6</text><line x1=\"23.26295176783311%\" y1=\"33\" x2=\"23.26295176783311%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"23.26295176783311%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1.78088</text><text x=\"23.26295176783311%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1.78088</text><text x=\"23.26295176783311%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"76.73704815721814%\" y1=\"33\" x2=\"76.73704815721814%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"76.73704815721814%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">5.35388</text><text x=\"76.73704815721814%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">5.35388</text><text x=\"76.73704815721814%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">sadness</tspan>(inputs)</text><rect x=\"8.333333327087608%\" width=\"68.40371483013053%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"32.41360156796934%\" x2=\"76.73704815721814%\" y1=\"60\" y2=\"60\" id=\"_fb_cbwblwejdbdqkizvwbmn_ind_5\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"54.57532486259374%\" y=\"71\" font-size=\"12px\" id=\"_fs_cbwblwejdbdqkizvwbmn_ind_5\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">5.914</text><svg x=\"32.41360156796934%\" y=\"40\" height=\"20\" width=\"44.3234465892488%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeless</text> </svg></svg><line x1=\"11.870551304800413%\" x2=\"32.41360156796934%\" y1=\"60\" y2=\"60\" id=\"_fb_cbwblwejdbdqkizvwbmn_ind_3\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"22.142076436384876%\" y=\"71\" font-size=\"12px\" id=\"_fs_cbwblwejdbdqkizvwbmn_ind_3\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">2.741</text><svg x=\"11.870551304800413%\" y=\"40\" height=\"20\" width=\"20.543050263168922%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feeling</text> </svg></svg><line x1=\"10.00925705016997%\" x2=\"11.870551304800413%\" y1=\"60\" y2=\"60\" id=\"_fb_cbwblwejdbdqkizvwbmn_ind_4\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"10.939904177485191%\" y=\"71\" font-size=\"12px\" id=\"_fs_cbwblwejdbdqkizvwbmn_ind_4\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.248</text><svg x=\"10.00925705016997%\" y=\"40\" height=\"20\" width=\"1.8612942546304438%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><line x1=\"9.419518826108382%\" x2=\"10.00925705016997%\" y1=\"60\" y2=\"60\" id=\"_fb_cbwblwejdbdqkizvwbmn_ind_6\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"9.714387938139176%\" y=\"71\" font-size=\"12px\" id=\"_fs_cbwblwejdbdqkizvwbmn_ind_6\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.079</text><svg x=\"9.419518826108382%\" y=\"40\" height=\"20\" width=\"0.5897382240615876%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to so</text> </svg></svg><line x1=\"8.943671374731334%\" x2=\"9.419518826108382%\" y1=\"60\" y2=\"60\" id=\"_fb_cbwblwejdbdqkizvwbmn_ind_1\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"9.181595100419859%\" y=\"71\" font-size=\"12px\" id=\"_fs_cbwblwejdbdqkizvwbmn_ind_1\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.063</text><svg x=\"8.943671374731334%\" y=\"40\" height=\"20\" width=\"0.47584745137704765%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">can go</text> </svg></svg><line x1=\"8.548480076353828%\" x2=\"8.943671374731334%\" y1=\"60\" y2=\"60\" id=\"_fb_cbwblwejdbdqkizvwbmn_ind_7\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.746075725542582%\" y=\"71\" font-size=\"12px\" id=\"_fs_cbwblwejdbdqkizvwbmn_ind_7\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.053</text><svg x=\"8.548480076353828%\" y=\"40\" height=\"20\" width=\"0.39519129837750633%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">damned</text> </svg></svg><line x1=\"8.333333327087612%\" x2=\"8.548480076353828%\" y1=\"60\" y2=\"60\" id=\"_fb_cbwblwejdbdqkizvwbmn_ind_2\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.44090670172072%\" y=\"71\" font-size=\"12px\" id=\"_fs_cbwblwejdbdqkizvwbmn_ind_2\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.029</text><svg x=\"8.333333327087612%\" y=\"40\" height=\"20\" width=\"0.21514674926621602%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"32.41360156796934%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"32.41360156796934%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"32.41360156796934%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"32.41360156796934%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"32.41360156796934%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"32.41360156796934%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"32.41360156796934%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"32.41360156796934%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"11.870551304800413%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"11.870551304800413%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"11.870551304800413%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"11.870551304800413%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"11.870551304800413%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"11.870551304800413%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"11.870551304800413%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"11.870551304800413%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"10.00925705016997%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"10.00925705016997%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"10.00925705016997%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"10.00925705016997%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"10.00925705016997%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"10.00925705016997%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"10.00925705016997%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"10.00925705016997%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"9.419518826108382%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"9.419518826108382%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"9.419518826108382%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"9.419518826108382%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"9.419518826108382%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"9.419518826108382%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"9.419518826108382%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"9.419518826108382%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.943671374731334%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.943671374731334%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.943671374731334%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.943671374731334%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.943671374731334%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.943671374731334%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.943671374731334%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.943671374731334%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.548480076353828%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.548480076353828%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.548480076353828%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.548480076353828%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.548480076353828%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.548480076353828%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.548480076353828%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.548480076353828%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"76.73704815721814%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.333333327087608%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"76.73704815721814%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"32.41360156796934%\" y=\"40\" height=\"20\" width=\"44.3234465892488%\" onmouseover=\"document.getElementById('_tp_cbwblwejdbdqkizvwbmn_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_5').style.opacity = 1;document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_cbwblwejdbdqkizvwbmn_ind_5').style.textDecoration = 'none';document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_5').style.opacity = 0;document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"32.41360156796934%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"11.870551304800413%\" y=\"40\" height=\"20\" width=\"20.543050263168922%\" onmouseover=\"document.getElementById('_tp_cbwblwejdbdqkizvwbmn_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_3').style.opacity = 1;document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_cbwblwejdbdqkizvwbmn_ind_3').style.textDecoration = 'none';document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_3').style.opacity = 0;document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"11.870551304800413%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"10.00925705016997%\" y=\"40\" height=\"20\" width=\"1.8612942546304438%\" onmouseover=\"document.getElementById('_tp_cbwblwejdbdqkizvwbmn_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_4').style.opacity = 1;document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_cbwblwejdbdqkizvwbmn_ind_4').style.textDecoration = 'none';document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_4').style.opacity = 0;document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"10.00925705016997%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"9.419518826108382%\" y=\"40\" height=\"20\" width=\"0.5897382240615876%\" onmouseover=\"document.getElementById('_tp_cbwblwejdbdqkizvwbmn_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_6').style.opacity = 1;document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_cbwblwejdbdqkizvwbmn_ind_6').style.textDecoration = 'none';document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_6').style.opacity = 0;document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"9.419518826108382%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.943671374731334%\" y=\"40\" height=\"20\" width=\"0.47584745137704765%\" onmouseover=\"document.getElementById('_tp_cbwblwejdbdqkizvwbmn_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_1').style.opacity = 1;document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_cbwblwejdbdqkizvwbmn_ind_1').style.textDecoration = 'none';document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_1').style.opacity = 0;document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"8.943671374731334%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.548480076353828%\" y=\"40\" height=\"20\" width=\"0.39519129837750633%\" onmouseover=\"document.getElementById('_tp_cbwblwejdbdqkizvwbmn_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_7').style.opacity = 1;document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_cbwblwejdbdqkizvwbmn_ind_7').style.textDecoration = 'none';document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_7').style.opacity = 0;document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"8.333333327087612%\" y=\"40\" height=\"20\" width=\"0.21514674926621602%\" onmouseover=\"document.getElementById('_tp_cbwblwejdbdqkizvwbmn_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_2').style.opacity = 1;document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_cbwblwejdbdqkizvwbmn_ind_2').style.textDecoration = 'none';document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_2').style.opacity = 0;document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"76.73704815721814%\" width=\"14.929618440745505%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"76.73704815721814%\" x2=\"86.47808459159445%\" y1=\"60\" y2=\"60\" id=\"_fb_cbwblwejdbdqkizvwbmn_ind_8\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"81.6075663744063%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_cbwblwejdbdqkizvwbmn_ind_8\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.3</text><svg x=\"76.73704815721814%\" y=\"40\" height=\"20\" width=\"9.741036434376312%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeful</text> </svg></svg><line x1=\"86.47808459159445%\" x2=\"87.7697361595367%\" y1=\"60\" y2=\"60\" id=\"_fb_cbwblwejdbdqkizvwbmn_ind_9\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"87.12391037556557%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_cbwblwejdbdqkizvwbmn_ind_9\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.172</text><svg x=\"86.47808459159445%\" y=\"40\" height=\"20\" width=\"1.291651567942253%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">just from</text> </svg></svg><line x1=\"87.7697361595367%\" x2=\"88.78033745380294%\" y1=\"60\" y2=\"60\" id=\"_fb_cbwblwejdbdqkizvwbmn_ind_15\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"88.27503680666982%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_cbwblwejdbdqkizvwbmn_ind_15\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.135</text><svg x=\"87.7697361595367%\" y=\"40\" height=\"20\" width=\"1.0106012942662375%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">awake</text> </svg></svg><line x1=\"88.78033745380294%\" x2=\"89.67290415403822%\" y1=\"60\" y2=\"60\" id=\"_fb_cbwblwejdbdqkizvwbmn_ind_12\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"89.22662080392058%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_cbwblwejdbdqkizvwbmn_ind_12\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.119</text><svg x=\"88.78033745380294%\" y=\"40\" height=\"20\" width=\"0.8925667002352782%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">cares</text> </svg></svg><line x1=\"89.67290415403822%\" x2=\"90.49821464243027%\" y1=\"60\" y2=\"60\" id=\"_fb_cbwblwejdbdqkizvwbmn_ind_11\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"90.08555939823424%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_cbwblwejdbdqkizvwbmn_ind_11\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.11</text><svg x=\"89.67290415403822%\" y=\"40\" height=\"20\" width=\"0.8253104883920486%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">someone who</text> </svg></svg><line x1=\"90.49821464243027%\" x2=\"91.02965283300588%\" y1=\"60\" y2=\"60\" id=\"_fb_cbwblwejdbdqkizvwbmn_ind_10\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"90.76393373771808%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_cbwblwejdbdqkizvwbmn_ind_10\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.071</text><svg x=\"90.49821464243027%\" y=\"40\" height=\"20\" width=\"0.5314381905756136%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">being around</text> </svg></svg><line x1=\"91.02965283300588%\" x2=\"91.43497085452758%\" y1=\"60\" y2=\"60\" id=\"_fb_cbwblwejdbdqkizvwbmn_ind_14\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.23231184376672%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_cbwblwejdbdqkizvwbmn_ind_14\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.054</text><svg x=\"91.02965283300588%\" y=\"40\" height=\"20\" width=\"0.40531802152169405%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">is</text> </svg></svg><line x1=\"91.43497085452758%\" x2=\"91.62148297390411%\" y1=\"60\" y2=\"60\" id=\"_fb_cbwblwejdbdqkizvwbmn_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.52822691421585%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_cbwblwejdbdqkizvwbmn_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.025</text><svg x=\"91.43497085452758%\" y=\"40\" height=\"20\" width=\"0.18651211937653045%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"91.62148297390411%\" x2=\"91.66666614545113%\" y1=\"60\" y2=\"60\" id=\"_fb_cbwblwejdbdqkizvwbmn_ind_13\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.64407455967762%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_cbwblwejdbdqkizvwbmn_ind_13\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.006</text><svg x=\"91.62148297390411%\" y=\"40\" height=\"20\" width=\"0.04518317154702345%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">and</text> </svg></svg><line x1=\"91.66666614545113%\" x2=\"91.66666659796363%\" y1=\"60\" y2=\"60\" id=\"_fb_cbwblwejdbdqkizvwbmn_ind_16\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.66666637170738%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_cbwblwejdbdqkizvwbmn_ind_16\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"91.66666614545113%\" y=\"40\" height=\"20\" width=\"4.525124950305326e-07%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"86.47808459159445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"86.47808459159445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"86.47808459159445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"86.47808459159445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"86.47808459159445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"86.47808459159445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"86.47808459159445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"86.47808459159445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"87.7697361595367%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"87.7697361595367%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"87.7697361595367%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"87.7697361595367%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"87.7697361595367%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"87.7697361595367%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"87.7697361595367%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"87.7697361595367%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"88.78033745380294%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"88.78033745380294%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"88.78033745380294%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"88.78033745380294%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"88.78033745380294%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"88.78033745380294%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"88.78033745380294%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"88.78033745380294%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"89.67290415403822%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"89.67290415403822%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"89.67290415403822%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"89.67290415403822%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"89.67290415403822%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"89.67290415403822%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"89.67290415403822%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"89.67290415403822%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"90.49821464243027%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.49821464243027%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.49821464243027%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.49821464243027%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.49821464243027%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.49821464243027%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.49821464243027%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.49821464243027%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.02965283300588%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.02965283300588%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.02965283300588%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.02965283300588%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.02965283300588%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.02965283300588%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.02965283300588%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.02965283300588%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.43497085452758%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.43497085452758%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.43497085452758%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.43497085452758%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.43497085452758%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.43497085452758%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.43497085452758%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.43497085452758%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.62148297390411%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.62148297390411%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.62148297390411%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.62148297390411%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.62148297390411%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.62148297390411%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.62148297390411%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.62148297390411%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.66666614545113%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.66666614545113%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.66666614545113%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.66666614545113%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.66666614545113%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.66666614545113%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.66666614545113%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.66666614545113%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"76.73704815721814%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66666659796365%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"86.47808459159445%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"76.73704815721814%\" y=\"40\" height=\"20\" width=\"9.741036434376312%\" onmouseover=\"document.getElementById('_tp_cbwblwejdbdqkizvwbmn_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_8').style.opacity = 1;document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_cbwblwejdbdqkizvwbmn_ind_8').style.textDecoration = 'none';document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_8').style.opacity = 0;document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"87.7697361595367%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"86.47808459159445%\" y=\"40\" height=\"20\" width=\"1.291651567942253%\" onmouseover=\"document.getElementById('_tp_cbwblwejdbdqkizvwbmn_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_9').style.opacity = 1;document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_cbwblwejdbdqkizvwbmn_ind_9').style.textDecoration = 'none';document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_9').style.opacity = 0;document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"88.78033745380294%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"87.7697361595367%\" y=\"40\" height=\"20\" width=\"1.0106012942662375%\" onmouseover=\"document.getElementById('_tp_cbwblwejdbdqkizvwbmn_ind_15').style.textDecoration = 'underline';document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_15').style.opacity = 1;document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_15').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_cbwblwejdbdqkizvwbmn_ind_15').style.textDecoration = 'none';document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_15').style.opacity = 0;document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_15').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"89.67290415403822%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"88.78033745380294%\" y=\"40\" height=\"20\" width=\"0.8925667002352782%\" onmouseover=\"document.getElementById('_tp_cbwblwejdbdqkizvwbmn_ind_12').style.textDecoration = 'underline';document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_12').style.opacity = 1;document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_12').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_cbwblwejdbdqkizvwbmn_ind_12').style.textDecoration = 'none';document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_12').style.opacity = 0;document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_12').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"90.49821464243027%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"89.67290415403822%\" y=\"40\" height=\"20\" width=\"0.8253104883920486%\" onmouseover=\"document.getElementById('_tp_cbwblwejdbdqkizvwbmn_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_11').style.opacity = 1;document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_cbwblwejdbdqkizvwbmn_ind_11').style.textDecoration = 'none';document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_11').style.opacity = 0;document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.02965283300588%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"90.49821464243027%\" y=\"40\" height=\"20\" width=\"0.5314381905756136%\" onmouseover=\"document.getElementById('_tp_cbwblwejdbdqkizvwbmn_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_10').style.opacity = 1;document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_cbwblwejdbdqkizvwbmn_ind_10').style.textDecoration = 'none';document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_10').style.opacity = 0;document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.43497085452758%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.02965283300588%\" y=\"40\" height=\"20\" width=\"0.40531802152169405%\" onmouseover=\"document.getElementById('_tp_cbwblwejdbdqkizvwbmn_ind_14').style.textDecoration = 'underline';document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_14').style.opacity = 1;document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_14').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_cbwblwejdbdqkizvwbmn_ind_14').style.textDecoration = 'none';document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_14').style.opacity = 0;document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_14').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.62148297390411%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.43497085452758%\" y=\"40\" height=\"20\" width=\"0.18651211937653045%\" onmouseover=\"document.getElementById('_tp_cbwblwejdbdqkizvwbmn_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_0').style.opacity = 1;document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_cbwblwejdbdqkizvwbmn_ind_0').style.textDecoration = 'none';document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_0').style.opacity = 0;document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66666614545113%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.62148297390411%\" y=\"40\" height=\"20\" width=\"0.04518317154702345%\" onmouseover=\"document.getElementById('_tp_cbwblwejdbdqkizvwbmn_ind_13').style.textDecoration = 'underline';document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_13').style.opacity = 1;document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_13').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_cbwblwejdbdqkizvwbmn_ind_13').style.textDecoration = 'none';document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_13').style.opacity = 0;document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_13').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"91.66666614545113%\" y=\"40\" height=\"20\" width=\"4.525124950305326e-07%\" onmouseover=\"document.getElementById('_tp_cbwblwejdbdqkizvwbmn_ind_16').style.textDecoration = 'underline';document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_16').style.opacity = 1;document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_16').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_cbwblwejdbdqkizvwbmn_ind_16').style.textDecoration = 'none';document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_16').style.opacity = 0;document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_16').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.025 / 2</div\n",
|
|
" ><div id='_tp_cbwblwejdbdqkizvwbmn_ind_0'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_0').style.opacity = 1; document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_0').style.opacity = 0; document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_0').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.063 / 2</div\n",
|
|
" ><div id='_tp_cbwblwejdbdqkizvwbmn_ind_1'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_1').style.opacity = 1; document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_1').style.opacity = 0; document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_1').style.opacity = 0;\"\n",
|
|
" >can go </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.029</div\n",
|
|
" ><div id='_tp_cbwblwejdbdqkizvwbmn_ind_2'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_2').style.opacity = 1; document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_2').style.opacity = 0; document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_2').style.opacity = 0;\"\n",
|
|
" >from </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>2.741</div\n",
|
|
" ><div id='_tp_cbwblwejdbdqkizvwbmn_ind_3'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.46397306397306415); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_3').style.opacity = 1; document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_3').style.opacity = 0; document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_3').style.opacity = 0;\"\n",
|
|
" >feeling </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.248</div\n",
|
|
" ><div id='_tp_cbwblwejdbdqkizvwbmn_ind_4'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.03830461477520289); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_4').style.opacity = 1; document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_4').style.opacity = 0; document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_4').style.opacity = 0;\"\n",
|
|
" >so </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>5.914</div\n",
|
|
" ><div id='_tp_cbwblwejdbdqkizvwbmn_ind_5'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 1.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_5').style.opacity = 1; document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_5').style.opacity = 0; document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_5').style.opacity = 0;\"\n",
|
|
" >hopeless </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.079 / 2</div\n",
|
|
" ><div id='_tp_cbwblwejdbdqkizvwbmn_ind_6'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_6').style.opacity = 1; document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_6').style.opacity = 0; document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_6').style.opacity = 0;\"\n",
|
|
" >to so </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.053</div\n",
|
|
" ><div id='_tp_cbwblwejdbdqkizvwbmn_ind_7'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_7').style.opacity = 1; document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_7').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_7').style.opacity = 0; document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_7').style.opacity = 0;\"\n",
|
|
" >damned </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.3</div\n",
|
|
" ><div id='_tp_cbwblwejdbdqkizvwbmn_ind_8'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.21960784313725487); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_8').style.opacity = 1; document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_8').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_8').style.opacity = 0; document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_8').style.opacity = 0;\"\n",
|
|
" >hopeful </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.172 / 2</div\n",
|
|
" ><div id='_tp_cbwblwejdbdqkizvwbmn_ind_9'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.022539116656763607); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_9').style.opacity = 1; document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_9').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_9').style.opacity = 0; document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_9').style.opacity = 0;\"\n",
|
|
" >just from </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.071 / 2</div\n",
|
|
" ><div id='_tp_cbwblwejdbdqkizvwbmn_ind_10'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_10').style.opacity = 1; document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_10').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_10').style.opacity = 0; document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_10').style.opacity = 0;\"\n",
|
|
" >being around </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.11 / 2</div\n",
|
|
" ><div id='_tp_cbwblwejdbdqkizvwbmn_ind_11'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_11').style.opacity = 1; document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_11').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_11').style.opacity = 0; document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_11').style.opacity = 0;\"\n",
|
|
" >someone who </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.119</div\n",
|
|
" ><div id='_tp_cbwblwejdbdqkizvwbmn_ind_12'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_12').style.opacity = 1; document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_12').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_12').style.opacity = 0; document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_12').style.opacity = 0;\"\n",
|
|
" >cares </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.006</div\n",
|
|
" ><div id='_tp_cbwblwejdbdqkizvwbmn_ind_13'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_13').style.opacity = 1; document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_13').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_13').style.opacity = 0; document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_13').style.opacity = 0;\"\n",
|
|
" >and </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.054</div\n",
|
|
" ><div id='_tp_cbwblwejdbdqkizvwbmn_ind_14'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_14').style.opacity = 1; document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_14').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_14').style.opacity = 0; document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_14').style.opacity = 0;\"\n",
|
|
" >is </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.135</div\n",
|
|
" ><div id='_tp_cbwblwejdbdqkizvwbmn_ind_15'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_15').style.opacity = 1; document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_15').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_15').style.opacity = 0; document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_15').style.opacity = 0;\"\n",
|
|
" >awake</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_cbwblwejdbdqkizvwbmn_ind_16'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_16').style.opacity = 1; document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_16').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_cbwblwejdbdqkizvwbmn_ind_16').style.opacity = 0; document.getElementById('_fs_cbwblwejdbdqkizvwbmn_ind_16').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_bgksouvlavqavwefwxrm_output_1' style='display: none';><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"49.99634084343776%\" y1=\"33\" x2=\"49.99634084343776%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"49.99634084343776%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1</text><line x1=\"34.135128947971666%\" y1=\"33\" x2=\"34.135128947971666%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"34.135128947971666%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"18.273917052505578%\" y1=\"33\" x2=\"18.273917052505578%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"18.273917052505578%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7</text><line x1=\"65.85755273890385%\" y1=\"33\" x2=\"65.85755273890385%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"65.85755273890385%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">2</text><line x1=\"81.71876463436993%\" y1=\"33\" x2=\"81.71876463436993%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"81.71876463436993%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">5</text><line x1=\"47.96351876101648%\" y1=\"33\" x2=\"47.96351876101648%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"47.96351876101648%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1.38449</text><text x=\"47.96351876101648%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1.38449</text><text x=\"47.96351876101648%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"19.69415742330428%\" y1=\"33\" x2=\"19.69415742330428%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"19.69415742330428%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.73137</text><text x=\"19.69415742330428%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.73137</text><text x=\"19.69415742330428%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">joy</tspan>(inputs)</text><rect x=\"5.6381396820267335%\" width=\"14.056017741277547%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"11.00288126853738%\" x2=\"19.69415742330428%\" y1=\"60\" y2=\"60\" id=\"_fb_uinvvjwxjplscdrjvibk_ind_8\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"15.34851934592083%\" y=\"71\" font-size=\"12px\" id=\"_fs_uinvvjwxjplscdrjvibk_ind_8\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">1.644</text><svg x=\"11.00288126853738%\" y=\"40\" height=\"20\" width=\"8.6912761547669%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeful</text> </svg></svg><line x1=\"9.278038863828803%\" x2=\"11.00288126853738%\" y1=\"60\" y2=\"60\" id=\"_fb_uinvvjwxjplscdrjvibk_ind_15\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"10.140460066183092%\" y=\"71\" font-size=\"12px\" id=\"_fs_uinvvjwxjplscdrjvibk_ind_15\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.326</text><svg x=\"9.278038863828803%\" y=\"40\" height=\"20\" width=\"1.7248424047085766%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">awake</text> </svg></svg><line x1=\"8.35876522991118%\" x2=\"9.278038863828803%\" y1=\"60\" y2=\"60\" id=\"_fb_uinvvjwxjplscdrjvibk_ind_9\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.818402046869991%\" y=\"71\" font-size=\"12px\" id=\"_fs_uinvvjwxjplscdrjvibk_ind_9\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.174</text><svg x=\"8.35876522991118%\" y=\"40\" height=\"20\" width=\"0.9192736339176228%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">just from</text> </svg></svg><line x1=\"7.839958654737392%\" x2=\"8.35876522991118%\" y1=\"60\" y2=\"60\" id=\"_fb_uinvvjwxjplscdrjvibk_ind_11\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.099361942324286%\" y=\"71\" font-size=\"12px\" id=\"_fs_uinvvjwxjplscdrjvibk_ind_11\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.098</text><svg x=\"7.839958654737392%\" y=\"40\" height=\"20\" width=\"0.5188065751737883%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">someone who</text> </svg></svg><line x1=\"7.349422683726127%\" x2=\"7.839958654737392%\" y1=\"60\" y2=\"60\" id=\"_fb_uinvvjwxjplscdrjvibk_ind_14\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"7.59469066923176%\" y=\"71\" font-size=\"12px\" id=\"_fs_uinvvjwxjplscdrjvibk_ind_14\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.093</text><svg x=\"7.349422683726127%\" y=\"40\" height=\"20\" width=\"0.49053597101126467%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">is</text> </svg></svg><line x1=\"6.9032958422886885%\" x2=\"7.349422683726127%\" y1=\"60\" y2=\"60\" id=\"_fb_uinvvjwxjplscdrjvibk_ind_12\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"7.126359263007408%\" y=\"71\" font-size=\"12px\" id=\"_fs_uinvvjwxjplscdrjvibk_ind_12\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.084</text><svg x=\"6.9032958422886885%\" y=\"40\" height=\"20\" width=\"0.4461268414374384%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">cares</text> </svg></svg><line x1=\"6.508452204351412%\" x2=\"6.9032958422886885%\" y1=\"60\" y2=\"60\" id=\"_fb_uinvvjwxjplscdrjvibk_ind_6\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"6.7058740233200504%\" y=\"71\" font-size=\"12px\" id=\"_fs_uinvvjwxjplscdrjvibk_ind_6\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.075</text><svg x=\"6.508452204351412%\" y=\"40\" height=\"20\" width=\"0.39484363793727617%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to so</text> </svg></svg><line x1=\"6.197355494644574%\" x2=\"6.508452204351412%\" y1=\"60\" y2=\"60\" id=\"_fb_uinvvjwxjplscdrjvibk_ind_13\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"6.352903849497993%\" y=\"71\" font-size=\"12px\" id=\"_fs_uinvvjwxjplscdrjvibk_ind_13\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.059</text><svg x=\"6.197355494644574%\" y=\"40\" height=\"20\" width=\"0.3110967097068382%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">and</text> </svg></svg><line x1=\"5.888008064391909%\" x2=\"6.197355494644574%\" y1=\"60\" y2=\"60\" id=\"_fb_uinvvjwxjplscdrjvibk_ind_0\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"6.042681779518242%\" y=\"71\" font-size=\"12px\" id=\"_fs_uinvvjwxjplscdrjvibk_ind_0\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.059</text><svg x=\"5.888008064391909%\" y=\"40\" height=\"20\" width=\"0.3093474302526653%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"5.638140962361793%\" x2=\"5.888008064391909%\" y1=\"60\" y2=\"60\" id=\"_fb_uinvvjwxjplscdrjvibk_ind_7\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"5.763074513376851%\" y=\"71\" font-size=\"12px\" id=\"_fs_uinvvjwxjplscdrjvibk_ind_7\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.047</text><svg x=\"5.638140962361793%\" y=\"40\" height=\"20\" width=\"0.24986710203011597%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">damned</text> </svg></svg><line x1=\"5.638139682026725%\" x2=\"5.638140962361793%\" y1=\"60\" y2=\"60\" id=\"_fb_uinvvjwxjplscdrjvibk_ind_16\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"5.638140322194259%\" y=\"71\" font-size=\"12px\" id=\"_fs_uinvvjwxjplscdrjvibk_ind_16\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"5.638139682026725%\" y=\"40\" height=\"20\" width=\"1.28033506818781e-06%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"11.00288126853738%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"11.00288126853738%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"11.00288126853738%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"11.00288126853738%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"11.00288126853738%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"11.00288126853738%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"11.00288126853738%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"11.00288126853738%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"9.278038863828803%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"9.278038863828803%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"9.278038863828803%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"9.278038863828803%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"9.278038863828803%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"9.278038863828803%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"9.278038863828803%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"9.278038863828803%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.35876522991118%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.35876522991118%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.35876522991118%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.35876522991118%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.35876522991118%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.35876522991118%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.35876522991118%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.35876522991118%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"7.839958654737392%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"7.839958654737392%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"7.839958654737392%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"7.839958654737392%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"7.839958654737392%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"7.839958654737392%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"7.839958654737392%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"7.839958654737392%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"7.349422683726127%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"7.349422683726127%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"7.349422683726127%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"7.349422683726127%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"7.349422683726127%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"7.349422683726127%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"7.349422683726127%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"7.349422683726127%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"6.9032958422886885%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"6.9032958422886885%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"6.9032958422886885%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"6.9032958422886885%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"6.9032958422886885%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"6.9032958422886885%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"6.9032958422886885%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"6.9032958422886885%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"6.508452204351412%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"6.508452204351412%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"6.508452204351412%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"6.508452204351412%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"6.508452204351412%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"6.508452204351412%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"6.508452204351412%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"6.508452204351412%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"6.197355494644574%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"6.197355494644574%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"6.197355494644574%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"6.197355494644574%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"6.197355494644574%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"6.197355494644574%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"6.197355494644574%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"6.197355494644574%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"5.888008064391909%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"5.888008064391909%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"5.888008064391909%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"5.888008064391909%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"5.888008064391909%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"5.888008064391909%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"5.888008064391909%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"5.888008064391909%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"5.638140962361793%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"5.638140962361793%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"5.638140962361793%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"5.638140962361793%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"5.638140962361793%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"5.638140962361793%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"5.638140962361793%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"5.638140962361793%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"19.69415742330428%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"5.6381396820267335%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"19.69415742330428%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"11.00288126853738%\" y=\"40\" height=\"20\" width=\"8.6912761547669%\" onmouseover=\"document.getElementById('_tp_uinvvjwxjplscdrjvibk_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_8').style.opacity = 1;document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uinvvjwxjplscdrjvibk_ind_8').style.textDecoration = 'none';document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_8').style.opacity = 0;document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"11.00288126853738%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"9.278038863828803%\" y=\"40\" height=\"20\" width=\"1.7248424047085766%\" onmouseover=\"document.getElementById('_tp_uinvvjwxjplscdrjvibk_ind_15').style.textDecoration = 'underline';document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_15').style.opacity = 1;document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_15').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uinvvjwxjplscdrjvibk_ind_15').style.textDecoration = 'none';document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_15').style.opacity = 0;document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_15').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"9.278038863828803%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.35876522991118%\" y=\"40\" height=\"20\" width=\"0.9192736339176228%\" onmouseover=\"document.getElementById('_tp_uinvvjwxjplscdrjvibk_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_9').style.opacity = 1;document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uinvvjwxjplscdrjvibk_ind_9').style.textDecoration = 'none';document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_9').style.opacity = 0;document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"8.35876522991118%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"7.839958654737392%\" y=\"40\" height=\"20\" width=\"0.5188065751737883%\" onmouseover=\"document.getElementById('_tp_uinvvjwxjplscdrjvibk_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_11').style.opacity = 1;document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uinvvjwxjplscdrjvibk_ind_11').style.textDecoration = 'none';document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_11').style.opacity = 0;document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"7.839958654737392%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"7.349422683726127%\" y=\"40\" height=\"20\" width=\"0.49053597101126467%\" onmouseover=\"document.getElementById('_tp_uinvvjwxjplscdrjvibk_ind_14').style.textDecoration = 'underline';document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_14').style.opacity = 1;document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_14').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uinvvjwxjplscdrjvibk_ind_14').style.textDecoration = 'none';document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_14').style.opacity = 0;document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_14').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"7.349422683726127%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"6.9032958422886885%\" y=\"40\" height=\"20\" width=\"0.4461268414374384%\" onmouseover=\"document.getElementById('_tp_uinvvjwxjplscdrjvibk_ind_12').style.textDecoration = 'underline';document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_12').style.opacity = 1;document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_12').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uinvvjwxjplscdrjvibk_ind_12').style.textDecoration = 'none';document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_12').style.opacity = 0;document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_12').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"6.9032958422886885%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"6.508452204351412%\" y=\"40\" height=\"20\" width=\"0.39484363793727617%\" onmouseover=\"document.getElementById('_tp_uinvvjwxjplscdrjvibk_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_6').style.opacity = 1;document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uinvvjwxjplscdrjvibk_ind_6').style.textDecoration = 'none';document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_6').style.opacity = 0;document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"6.508452204351412%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"6.197355494644574%\" y=\"40\" height=\"20\" width=\"0.3110967097068382%\" onmouseover=\"document.getElementById('_tp_uinvvjwxjplscdrjvibk_ind_13').style.textDecoration = 'underline';document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_13').style.opacity = 1;document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_13').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uinvvjwxjplscdrjvibk_ind_13').style.textDecoration = 'none';document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_13').style.opacity = 0;document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_13').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"6.197355494644574%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"5.888008064391909%\" y=\"40\" height=\"20\" width=\"0.3093474302526653%\" onmouseover=\"document.getElementById('_tp_uinvvjwxjplscdrjvibk_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_0').style.opacity = 1;document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uinvvjwxjplscdrjvibk_ind_0').style.textDecoration = 'none';document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_0').style.opacity = 0;document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"5.888008064391909%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"5.638140962361793%\" y=\"40\" height=\"20\" width=\"0.24986710203011597%\" onmouseover=\"document.getElementById('_tp_uinvvjwxjplscdrjvibk_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_7').style.opacity = 1;document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uinvvjwxjplscdrjvibk_ind_7').style.textDecoration = 'none';document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_7').style.opacity = 0;document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"5.638139682026725%\" y=\"40\" height=\"20\" width=\"1.28033506818781e-06%\" onmouseover=\"document.getElementById('_tp_uinvvjwxjplscdrjvibk_ind_16').style.textDecoration = 'underline';document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_16').style.opacity = 1;document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_16').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uinvvjwxjplscdrjvibk_ind_16').style.textDecoration = 'none';document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_16').style.opacity = 0;document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_16').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"19.69415742330428%\" width=\"42.325379078989755%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"19.69415742330428%\" x2=\"44.55387409023016%\" y1=\"60\" y2=\"60\" id=\"_fb_uinvvjwxjplscdrjvibk_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"32.12401575676722%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_uinvvjwxjplscdrjvibk_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-4.702</text><svg x=\"19.69415742330428%\" y=\"40\" height=\"20\" width=\"24.85971666692588%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeless</text> </svg></svg><line x1=\"44.55387409023016%\" x2=\"60.742875015249076%\" y1=\"60\" y2=\"60\" id=\"_fb_uinvvjwxjplscdrjvibk_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"52.64837455273962%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_uinvvjwxjplscdrjvibk_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-3.062</text><svg x=\"44.55387409023016%\" y=\"40\" height=\"20\" width=\"16.189000925018917%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feeling</text> </svg></svg><line x1=\"60.742875015249076%\" x2=\"61.43259923509075%\" y1=\"60\" y2=\"60\" id=\"_fb_uinvvjwxjplscdrjvibk_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"61.08773712516991%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_uinvvjwxjplscdrjvibk_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.13</text><svg x=\"60.742875015249076%\" y=\"40\" height=\"20\" width=\"0.689724219841672%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><line x1=\"61.43259923509075%\" x2=\"61.809522024248054%\" y1=\"60\" y2=\"60\" id=\"_fb_uinvvjwxjplscdrjvibk_ind_10\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"61.6210606296694%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_uinvvjwxjplscdrjvibk_ind_10\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.071</text><svg x=\"61.43259923509075%\" y=\"40\" height=\"20\" width=\"0.37692278915730526%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">being around</text> </svg></svg><line x1=\"61.809522024248054%\" x2=\"61.937249005711735%\" y1=\"60\" y2=\"60\" id=\"_fb_uinvvjwxjplscdrjvibk_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"61.873385514979894%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_uinvvjwxjplscdrjvibk_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.024</text><svg x=\"61.809522024248054%\" y=\"40\" height=\"20\" width=\"0.127726981463681%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">can go</text> </svg></svg><line x1=\"61.937249005711735%\" x2=\"62.019536502294024%\" y1=\"60\" y2=\"60\" id=\"_fb_uinvvjwxjplscdrjvibk_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"61.97839275400288%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_uinvvjwxjplscdrjvibk_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.016</text><svg x=\"61.937249005711735%\" y=\"40\" height=\"20\" width=\"0.08228749658228907%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"44.55387409023016%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"44.55387409023016%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"44.55387409023016%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"44.55387409023016%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"44.55387409023016%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"44.55387409023016%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"44.55387409023016%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"44.55387409023016%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"60.742875015249076%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"60.742875015249076%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"60.742875015249076%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"60.742875015249076%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"60.742875015249076%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"60.742875015249076%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"60.742875015249076%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"60.742875015249076%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"61.43259923509075%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"61.43259923509075%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"61.43259923509075%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"61.43259923509075%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"61.43259923509075%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"61.43259923509075%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"61.43259923509075%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"61.43259923509075%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"61.809522024248054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"61.809522024248054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"61.809522024248054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"61.809522024248054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"61.809522024248054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"61.809522024248054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"61.809522024248054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"61.809522024248054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"61.937249005711735%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"61.937249005711735%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"61.937249005711735%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"61.937249005711735%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"61.937249005711735%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"61.937249005711735%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"61.937249005711735%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"61.937249005711735%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"19.69415742330428%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"62.019536502294024%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"44.55387409023016%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"19.69415742330428%\" y=\"40\" height=\"20\" width=\"24.85971666692588%\" onmouseover=\"document.getElementById('_tp_uinvvjwxjplscdrjvibk_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_5').style.opacity = 1;document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uinvvjwxjplscdrjvibk_ind_5').style.textDecoration = 'none';document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_5').style.opacity = 0;document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"60.742875015249076%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"44.55387409023016%\" y=\"40\" height=\"20\" width=\"16.189000925018917%\" onmouseover=\"document.getElementById('_tp_uinvvjwxjplscdrjvibk_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_3').style.opacity = 1;document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uinvvjwxjplscdrjvibk_ind_3').style.textDecoration = 'none';document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_3').style.opacity = 0;document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"61.43259923509075%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"60.742875015249076%\" y=\"40\" height=\"20\" width=\"0.689724219841672%\" onmouseover=\"document.getElementById('_tp_uinvvjwxjplscdrjvibk_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_4').style.opacity = 1;document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uinvvjwxjplscdrjvibk_ind_4').style.textDecoration = 'none';document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_4').style.opacity = 0;document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"61.809522024248054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"61.43259923509075%\" y=\"40\" height=\"20\" width=\"0.37692278915730526%\" onmouseover=\"document.getElementById('_tp_uinvvjwxjplscdrjvibk_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_10').style.opacity = 1;document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uinvvjwxjplscdrjvibk_ind_10').style.textDecoration = 'none';document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_10').style.opacity = 0;document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"61.937249005711735%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"61.809522024248054%\" y=\"40\" height=\"20\" width=\"0.127726981463681%\" onmouseover=\"document.getElementById('_tp_uinvvjwxjplscdrjvibk_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_1').style.opacity = 1;document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uinvvjwxjplscdrjvibk_ind_1').style.textDecoration = 'none';document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_1').style.opacity = 0;document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"61.937249005711735%\" y=\"40\" height=\"20\" width=\"0.08228749658228907%\" onmouseover=\"document.getElementById('_tp_uinvvjwxjplscdrjvibk_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_2').style.opacity = 1;document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uinvvjwxjplscdrjvibk_ind_2').style.textDecoration = 'none';document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_2').style.opacity = 0;document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.059 / 2</div\n",
|
|
" ><div id='_tp_uinvvjwxjplscdrjvibk_ind_0'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_0').style.opacity = 1; document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_0').style.opacity = 0; document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_0').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.024 / 2</div\n",
|
|
" ><div id='_tp_uinvvjwxjplscdrjvibk_ind_1'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_1').style.opacity = 1; document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_1').style.opacity = 0; document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_1').style.opacity = 0;\"\n",
|
|
" >can go </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.016</div\n",
|
|
" ><div id='_tp_uinvvjwxjplscdrjvibk_ind_2'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_2').style.opacity = 1; document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_2').style.opacity = 0; document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_2').style.opacity = 0;\"\n",
|
|
" >from </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-3.062</div\n",
|
|
" ><div id='_tp_uinvvjwxjplscdrjvibk_ind_3'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.440324816795405); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_3').style.opacity = 1; document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_3').style.opacity = 0; document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_3').style.opacity = 0;\"\n",
|
|
" >feeling </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.13</div\n",
|
|
" ><div id='_tp_uinvvjwxjplscdrjvibk_ind_4'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_4').style.opacity = 1; document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_4').style.opacity = 0; document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_4').style.opacity = 0;\"\n",
|
|
" >so </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-4.702</div\n",
|
|
" ><div id='_tp_uinvvjwxjplscdrjvibk_ind_5'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.684690037631214); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_5').style.opacity = 1; document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_5').style.opacity = 0; document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_5').style.opacity = 0;\"\n",
|
|
" >hopeless </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.075 / 2</div\n",
|
|
" ><div id='_tp_uinvvjwxjplscdrjvibk_ind_6'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_6').style.opacity = 1; document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_6').style.opacity = 0; document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_6').style.opacity = 0;\"\n",
|
|
" >to so </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.047</div\n",
|
|
" ><div id='_tp_uinvvjwxjplscdrjvibk_ind_7'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_7').style.opacity = 1; document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_7').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_7').style.opacity = 0; document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_7').style.opacity = 0;\"\n",
|
|
" >damned </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>1.644</div\n",
|
|
" ><div id='_tp_uinvvjwxjplscdrjvibk_ind_8'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.23537334125569415); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_8').style.opacity = 1; document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_8').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_8').style.opacity = 0; document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_8').style.opacity = 0;\"\n",
|
|
" >hopeful </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.174 / 2</div\n",
|
|
" ><div id='_tp_uinvvjwxjplscdrjvibk_ind_9'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.02253911665676371); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_9').style.opacity = 1; document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_9').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_9').style.opacity = 0; document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_9').style.opacity = 0;\"\n",
|
|
" >just from </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.071 / 2</div\n",
|
|
" ><div id='_tp_uinvvjwxjplscdrjvibk_ind_10'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_10').style.opacity = 1; document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_10').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_10').style.opacity = 0; document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_10').style.opacity = 0;\"\n",
|
|
" >being around </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.098 / 2</div\n",
|
|
" ><div id='_tp_uinvvjwxjplscdrjvibk_ind_11'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_11').style.opacity = 1; document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_11').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_11').style.opacity = 0; document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_11').style.opacity = 0;\"\n",
|
|
" >someone who </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.084</div\n",
|
|
" ><div id='_tp_uinvvjwxjplscdrjvibk_ind_12'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_12').style.opacity = 1; document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_12').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_12').style.opacity = 0; document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_12').style.opacity = 0;\"\n",
|
|
" >cares </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.059</div\n",
|
|
" ><div id='_tp_uinvvjwxjplscdrjvibk_ind_13'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_13').style.opacity = 1; document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_13').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_13').style.opacity = 0; document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_13').style.opacity = 0;\"\n",
|
|
" >and </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.093</div\n",
|
|
" ><div id='_tp_uinvvjwxjplscdrjvibk_ind_14'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_14').style.opacity = 1; document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_14').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_14').style.opacity = 0; document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_14').style.opacity = 0;\"\n",
|
|
" >is </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.326</div\n",
|
|
" ><div id='_tp_uinvvjwxjplscdrjvibk_ind_15'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.04618736383442265); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_15').style.opacity = 1; document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_15').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_15').style.opacity = 0; document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_15').style.opacity = 0;\"\n",
|
|
" >awake</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_uinvvjwxjplscdrjvibk_ind_16'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_16').style.opacity = 1; document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_16').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_uinvvjwxjplscdrjvibk_ind_16').style.opacity = 0; document.getElementById('_fs_uinvvjwxjplscdrjvibk_ind_16').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_bgksouvlavqavwefwxrm_output_1_zoom' style='display: none;'><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"50.452706694066976%\" y1=\"33\" x2=\"50.452706694066976%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"50.452706694066976%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"34.82382043646973%\" y1=\"33\" x2=\"34.82382043646973%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"34.82382043646973%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6</text><line x1=\"19.194934178872476%\" y1=\"33\" x2=\"19.194934178872476%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"19.194934178872476%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-8</text><line x1=\"66.08159295166423%\" y1=\"33\" x2=\"66.08159295166423%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"66.08159295166423%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2</text><line x1=\"81.71047920926148%\" y1=\"33\" x2=\"81.71047920926148%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"81.71047920926148%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0</text><line x1=\"70.89146631768429%\" y1=\"33\" x2=\"70.89146631768429%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"70.89146631768429%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1.38449</text><text x=\"70.89146631768429%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1.38449</text><text x=\"70.89146631768429%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"29.108533604171267%\" y1=\"33\" x2=\"29.108533604171267%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"29.108533604171267%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.73137</text><text x=\"29.108533604171267%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.73137</text><text x=\"29.108533604171267%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">joy</tspan>(inputs)</text><rect x=\"8.333333326821302%\" width=\"20.77520027734997%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"16.26257637043864%\" x2=\"29.108533604171267%\" y1=\"60\" y2=\"60\" id=\"_fb_qulzdrsvmkxzooukcpkm_ind_8\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"22.685554987304954%\" y=\"71\" font-size=\"12px\" id=\"_fs_qulzdrsvmkxzooukcpkm_ind_8\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">1.644</text><svg x=\"16.26257637043864%\" y=\"40\" height=\"20\" width=\"12.845957233732626%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeful</text> </svg></svg><line x1=\"13.71320946835691%\" x2=\"16.26257637043864%\" y1=\"60\" y2=\"60\" id=\"_fb_qulzdrsvmkxzooukcpkm_ind_15\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"14.987892919397776%\" y=\"71\" font-size=\"12px\" id=\"_fs_qulzdrsvmkxzooukcpkm_ind_15\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.326</text><svg x=\"13.71320946835691%\" y=\"40\" height=\"20\" width=\"2.549366902081731%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">awake</text> </svg></svg><line x1=\"12.35449648109014%\" x2=\"13.71320946835691%\" y1=\"60\" y2=\"60\" id=\"_fb_qulzdrsvmkxzooukcpkm_ind_9\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"13.033852974723525%\" y=\"71\" font-size=\"12px\" id=\"_fs_qulzdrsvmkxzooukcpkm_ind_9\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.174</text><svg x=\"12.35449648109014%\" y=\"40\" height=\"20\" width=\"1.3587129872667703%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">just from</text> </svg></svg><line x1=\"11.587685375495886%\" x2=\"12.35449648109014%\" y1=\"60\" y2=\"60\" id=\"_fb_qulzdrsvmkxzooukcpkm_ind_11\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"11.971090928293012%\" y=\"71\" font-size=\"12px\" id=\"_fs_qulzdrsvmkxzooukcpkm_ind_11\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.098</text><svg x=\"11.587685375495886%\" y=\"40\" height=\"20\" width=\"0.7668111055942539%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">someone who</text> </svg></svg><line x1=\"10.86265903954612%\" x2=\"11.587685375495886%\" y1=\"60\" y2=\"60\" id=\"_fb_qulzdrsvmkxzooukcpkm_ind_14\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"11.225172207521002%\" y=\"71\" font-size=\"12px\" id=\"_fs_qulzdrsvmkxzooukcpkm_ind_14\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.093</text><svg x=\"10.86265903954612%\" y=\"40\" height=\"20\" width=\"0.7250263359497655%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">is</text> </svg></svg><line x1=\"10.203270680014786%\" x2=\"10.86265903954612%\" y1=\"60\" y2=\"60\" id=\"_fb_qulzdrsvmkxzooukcpkm_ind_12\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"10.532964859780453%\" y=\"71\" font-size=\"12px\" id=\"_fs_qulzdrsvmkxzooukcpkm_ind_12\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.084</text><svg x=\"10.203270680014786%\" y=\"40\" height=\"20\" width=\"0.6593883595313343%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">cares</text> </svg></svg><line x1=\"9.619680376745945%\" x2=\"10.203270680014786%\" y1=\"60\" y2=\"60\" id=\"_fb_qulzdrsvmkxzooukcpkm_ind_6\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"9.911475528380365%\" y=\"71\" font-size=\"12px\" id=\"_fs_qulzdrsvmkxzooukcpkm_ind_6\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.075</text><svg x=\"9.619680376745945%\" y=\"40\" height=\"20\" width=\"0.5835903032688403%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to so</text> </svg></svg><line x1=\"9.159870452715731%\" x2=\"9.619680376745945%\" y1=\"60\" y2=\"60\" id=\"_fb_qulzdrsvmkxzooukcpkm_ind_13\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"9.389775414730838%\" y=\"71\" font-size=\"12px\" id=\"_fs_qulzdrsvmkxzooukcpkm_ind_13\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.059</text><svg x=\"9.159870452715731%\" y=\"40\" height=\"20\" width=\"0.45980992403021403%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">and</text> </svg></svg><line x1=\"8.702646014252654%\" x2=\"9.159870452715731%\" y1=\"60\" y2=\"60\" id=\"_fb_qulzdrsvmkxzooukcpkm_ind_0\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.931258233484193%\" y=\"71\" font-size=\"12px\" id=\"_fs_qulzdrsvmkxzooukcpkm_ind_0\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.059</text><svg x=\"8.702646014252654%\" y=\"40\" height=\"20\" width=\"0.4572244384630775%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"8.333335219193506%\" x2=\"8.702646014252654%\" y1=\"60\" y2=\"60\" id=\"_fb_qulzdrsvmkxzooukcpkm_ind_7\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.517990616723079%\" y=\"71\" font-size=\"12px\" id=\"_fs_qulzdrsvmkxzooukcpkm_ind_7\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.047</text><svg x=\"8.333335219193506%\" y=\"40\" height=\"20\" width=\"0.3693107950591479%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">damned</text> </svg></svg><line x1=\"8.333333326821288%\" x2=\"8.333335219193506%\" y1=\"60\" y2=\"60\" id=\"_fb_qulzdrsvmkxzooukcpkm_ind_16\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.333334273007397%\" y=\"71\" font-size=\"12px\" id=\"_fs_qulzdrsvmkxzooukcpkm_ind_16\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"8.333333326821288%\" y=\"40\" height=\"20\" width=\"1.892372218037508e-06%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"16.26257637043864%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"16.26257637043864%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"16.26257637043864%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"16.26257637043864%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"16.26257637043864%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"16.26257637043864%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"16.26257637043864%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"16.26257637043864%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"13.71320946835691%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"13.71320946835691%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"13.71320946835691%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"13.71320946835691%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"13.71320946835691%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"13.71320946835691%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"13.71320946835691%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"13.71320946835691%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"12.35449648109014%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"12.35449648109014%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"12.35449648109014%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"12.35449648109014%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"12.35449648109014%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"12.35449648109014%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"12.35449648109014%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"12.35449648109014%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"11.587685375495886%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"11.587685375495886%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"11.587685375495886%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"11.587685375495886%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"11.587685375495886%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"11.587685375495886%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"11.587685375495886%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"11.587685375495886%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"10.86265903954612%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"10.86265903954612%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"10.86265903954612%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"10.86265903954612%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"10.86265903954612%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"10.86265903954612%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"10.86265903954612%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"10.86265903954612%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"10.203270680014786%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"10.203270680014786%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"10.203270680014786%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"10.203270680014786%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"10.203270680014786%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"10.203270680014786%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"10.203270680014786%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"10.203270680014786%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"9.619680376745945%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"9.619680376745945%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"9.619680376745945%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"9.619680376745945%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"9.619680376745945%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"9.619680376745945%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"9.619680376745945%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"9.619680376745945%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"9.159870452715731%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"9.159870452715731%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"9.159870452715731%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"9.159870452715731%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"9.159870452715731%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"9.159870452715731%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"9.159870452715731%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"9.159870452715731%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.702646014252654%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.702646014252654%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.702646014252654%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.702646014252654%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.702646014252654%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.702646014252654%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.702646014252654%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.702646014252654%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.333335219193506%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.333335219193506%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.333335219193506%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.333335219193506%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.333335219193506%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.333335219193506%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.333335219193506%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.333335219193506%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"29.108533604171267%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.333333326821302%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"29.108533604171267%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"16.26257637043864%\" y=\"40\" height=\"20\" width=\"12.845957233732626%\" onmouseover=\"document.getElementById('_tp_qulzdrsvmkxzooukcpkm_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_8').style.opacity = 1;document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qulzdrsvmkxzooukcpkm_ind_8').style.textDecoration = 'none';document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_8').style.opacity = 0;document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"16.26257637043864%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"13.71320946835691%\" y=\"40\" height=\"20\" width=\"2.549366902081731%\" onmouseover=\"document.getElementById('_tp_qulzdrsvmkxzooukcpkm_ind_15').style.textDecoration = 'underline';document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_15').style.opacity = 1;document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_15').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qulzdrsvmkxzooukcpkm_ind_15').style.textDecoration = 'none';document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_15').style.opacity = 0;document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_15').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"13.71320946835691%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"12.35449648109014%\" y=\"40\" height=\"20\" width=\"1.3587129872667703%\" onmouseover=\"document.getElementById('_tp_qulzdrsvmkxzooukcpkm_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_9').style.opacity = 1;document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qulzdrsvmkxzooukcpkm_ind_9').style.textDecoration = 'none';document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_9').style.opacity = 0;document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"12.35449648109014%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"11.587685375495886%\" y=\"40\" height=\"20\" width=\"0.7668111055942539%\" onmouseover=\"document.getElementById('_tp_qulzdrsvmkxzooukcpkm_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_11').style.opacity = 1;document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qulzdrsvmkxzooukcpkm_ind_11').style.textDecoration = 'none';document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_11').style.opacity = 0;document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"11.587685375495886%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"10.86265903954612%\" y=\"40\" height=\"20\" width=\"0.7250263359497655%\" onmouseover=\"document.getElementById('_tp_qulzdrsvmkxzooukcpkm_ind_14').style.textDecoration = 'underline';document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_14').style.opacity = 1;document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_14').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qulzdrsvmkxzooukcpkm_ind_14').style.textDecoration = 'none';document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_14').style.opacity = 0;document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_14').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"10.86265903954612%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"10.203270680014786%\" y=\"40\" height=\"20\" width=\"0.6593883595313343%\" onmouseover=\"document.getElementById('_tp_qulzdrsvmkxzooukcpkm_ind_12').style.textDecoration = 'underline';document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_12').style.opacity = 1;document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_12').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qulzdrsvmkxzooukcpkm_ind_12').style.textDecoration = 'none';document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_12').style.opacity = 0;document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_12').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"10.203270680014786%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"9.619680376745945%\" y=\"40\" height=\"20\" width=\"0.5835903032688403%\" onmouseover=\"document.getElementById('_tp_qulzdrsvmkxzooukcpkm_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_6').style.opacity = 1;document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qulzdrsvmkxzooukcpkm_ind_6').style.textDecoration = 'none';document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_6').style.opacity = 0;document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"9.619680376745945%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"9.159870452715731%\" y=\"40\" height=\"20\" width=\"0.45980992403021403%\" onmouseover=\"document.getElementById('_tp_qulzdrsvmkxzooukcpkm_ind_13').style.textDecoration = 'underline';document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_13').style.opacity = 1;document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_13').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qulzdrsvmkxzooukcpkm_ind_13').style.textDecoration = 'none';document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_13').style.opacity = 0;document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_13').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"9.159870452715731%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.702646014252654%\" y=\"40\" height=\"20\" width=\"0.4572244384630775%\" onmouseover=\"document.getElementById('_tp_qulzdrsvmkxzooukcpkm_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_0').style.opacity = 1;document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qulzdrsvmkxzooukcpkm_ind_0').style.textDecoration = 'none';document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_0').style.opacity = 0;document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"8.702646014252654%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.333335219193506%\" y=\"40\" height=\"20\" width=\"0.3693107950591479%\" onmouseover=\"document.getElementById('_tp_qulzdrsvmkxzooukcpkm_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_7').style.opacity = 1;document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qulzdrsvmkxzooukcpkm_ind_7').style.textDecoration = 'none';document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_7').style.opacity = 0;document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"8.333333326821288%\" y=\"40\" height=\"20\" width=\"1.892372218037508e-06%\" onmouseover=\"document.getElementById('_tp_qulzdrsvmkxzooukcpkm_ind_16').style.textDecoration = 'underline';document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_16').style.opacity = 1;document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_16').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qulzdrsvmkxzooukcpkm_ind_16').style.textDecoration = 'none';document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_16').style.opacity = 0;document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_16').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"29.108533604171267%\" width=\"62.558132990863%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"29.108533604171267%\" x2=\"65.8519129951124%\" y1=\"60\" y2=\"60\" id=\"_fb_qulzdrsvmkxzooukcpkm_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"47.480223299641835%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_qulzdrsvmkxzooukcpkm_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-4.702</text><svg x=\"29.108533604171267%\" y=\"40\" height=\"20\" width=\"36.74337939094113%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeless</text> </svg></svg><line x1=\"65.8519129951124%\" x2=\"89.77972403648513%\" y1=\"60\" y2=\"60\" id=\"_fb_qulzdrsvmkxzooukcpkm_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"77.81581851579877%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_qulzdrsvmkxzooukcpkm_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-3.062</text><svg x=\"65.8519129951124%\" y=\"40\" height=\"20\" width=\"23.927811041372735%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feeling</text> </svg></svg><line x1=\"89.77972403648513%\" x2=\"90.79915635843432%\" y1=\"60\" y2=\"60\" id=\"_fb_qulzdrsvmkxzooukcpkm_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"90.28944019745973%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_qulzdrsvmkxzooukcpkm_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.13</text><svg x=\"89.77972403648513%\" y=\"40\" height=\"20\" width=\"1.019432321949182%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><line x1=\"90.79915635843432%\" x2=\"91.35625912950188%\" y1=\"60\" y2=\"60\" id=\"_fb_qulzdrsvmkxzooukcpkm_ind_10\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.07770774396809%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_qulzdrsvmkxzooukcpkm_ind_10\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.071</text><svg x=\"90.79915635843432%\" y=\"40\" height=\"20\" width=\"0.5571027710675622%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">being around</text> </svg></svg><line x1=\"91.35625912950188%\" x2=\"91.54504329793222%\" y1=\"60\" y2=\"60\" id=\"_fb_qulzdrsvmkxzooukcpkm_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.45065121371705%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_qulzdrsvmkxzooukcpkm_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.024</text><svg x=\"91.35625912950188%\" y=\"40\" height=\"20\" width=\"0.1887841684303453%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">can go</text> </svg></svg><line x1=\"91.54504329793222%\" x2=\"91.66666659503426%\" y1=\"60\" y2=\"60\" id=\"_fb_qulzdrsvmkxzooukcpkm_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.60585494648325%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_qulzdrsvmkxzooukcpkm_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.016</text><svg x=\"91.54504329793222%\" y=\"40\" height=\"20\" width=\"0.12162329710203323%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"65.8519129951124%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"65.8519129951124%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"65.8519129951124%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"65.8519129951124%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"65.8519129951124%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"65.8519129951124%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"65.8519129951124%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"65.8519129951124%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"89.77972403648513%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"89.77972403648513%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"89.77972403648513%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"89.77972403648513%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"89.77972403648513%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"89.77972403648513%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"89.77972403648513%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"89.77972403648513%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"90.79915635843432%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.79915635843432%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.79915635843432%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.79915635843432%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.79915635843432%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.79915635843432%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.79915635843432%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.79915635843432%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.35625912950188%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.35625912950188%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.35625912950188%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.35625912950188%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.35625912950188%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.35625912950188%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.35625912950188%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.35625912950188%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.54504329793222%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.54504329793222%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.54504329793222%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.54504329793222%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.54504329793222%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.54504329793222%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.54504329793222%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.54504329793222%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"29.108533604171267%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66666659503426%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"65.8519129951124%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"29.108533604171267%\" y=\"40\" height=\"20\" width=\"36.74337939094113%\" onmouseover=\"document.getElementById('_tp_qulzdrsvmkxzooukcpkm_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_5').style.opacity = 1;document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qulzdrsvmkxzooukcpkm_ind_5').style.textDecoration = 'none';document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_5').style.opacity = 0;document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"89.77972403648513%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"65.8519129951124%\" y=\"40\" height=\"20\" width=\"23.927811041372735%\" onmouseover=\"document.getElementById('_tp_qulzdrsvmkxzooukcpkm_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_3').style.opacity = 1;document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qulzdrsvmkxzooukcpkm_ind_3').style.textDecoration = 'none';document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_3').style.opacity = 0;document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"90.79915635843432%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"89.77972403648513%\" y=\"40\" height=\"20\" width=\"1.019432321949182%\" onmouseover=\"document.getElementById('_tp_qulzdrsvmkxzooukcpkm_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_4').style.opacity = 1;document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qulzdrsvmkxzooukcpkm_ind_4').style.textDecoration = 'none';document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_4').style.opacity = 0;document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.35625912950188%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"90.79915635843432%\" y=\"40\" height=\"20\" width=\"0.5571027710675622%\" onmouseover=\"document.getElementById('_tp_qulzdrsvmkxzooukcpkm_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_10').style.opacity = 1;document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qulzdrsvmkxzooukcpkm_ind_10').style.textDecoration = 'none';document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_10').style.opacity = 0;document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.54504329793222%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.35625912950188%\" y=\"40\" height=\"20\" width=\"0.1887841684303453%\" onmouseover=\"document.getElementById('_tp_qulzdrsvmkxzooukcpkm_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_1').style.opacity = 1;document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qulzdrsvmkxzooukcpkm_ind_1').style.textDecoration = 'none';document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_1').style.opacity = 0;document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"91.54504329793222%\" y=\"40\" height=\"20\" width=\"0.12162329710203323%\" onmouseover=\"document.getElementById('_tp_qulzdrsvmkxzooukcpkm_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_2').style.opacity = 1;document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qulzdrsvmkxzooukcpkm_ind_2').style.textDecoration = 'none';document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_2').style.opacity = 0;document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.059 / 2</div\n",
|
|
" ><div id='_tp_qulzdrsvmkxzooukcpkm_ind_0'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_0').style.opacity = 1; document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_0').style.opacity = 0; document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_0').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.024 / 2</div\n",
|
|
" ><div id='_tp_qulzdrsvmkxzooukcpkm_ind_1'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_1').style.opacity = 1; document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_1').style.opacity = 0; document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_1').style.opacity = 0;\"\n",
|
|
" >can go </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.016</div\n",
|
|
" ><div id='_tp_qulzdrsvmkxzooukcpkm_ind_2'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_2').style.opacity = 1; document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_2').style.opacity = 0; document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_2').style.opacity = 0;\"\n",
|
|
" >from </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-3.062</div\n",
|
|
" ><div id='_tp_qulzdrsvmkxzooukcpkm_ind_3'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.6531590413943356); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_3').style.opacity = 1; document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_3').style.opacity = 0; document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_3').style.opacity = 0;\"\n",
|
|
" >feeling </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.13</div\n",
|
|
" ><div id='_tp_qulzdrsvmkxzooukcpkm_ind_4'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.022539116656763607); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_4').style.opacity = 1; document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_4').style.opacity = 0; document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_4').style.opacity = 0;\"\n",
|
|
" >so </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-4.702</div\n",
|
|
" ><div id='_tp_qulzdrsvmkxzooukcpkm_ind_5'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 1.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_5').style.opacity = 1; document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_5').style.opacity = 0; document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_5').style.opacity = 0;\"\n",
|
|
" >hopeless </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.075 / 2</div\n",
|
|
" ><div id='_tp_qulzdrsvmkxzooukcpkm_ind_6'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.014656367597544035); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_6').style.opacity = 1; document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_6').style.opacity = 0; document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_6').style.opacity = 0;\"\n",
|
|
" >to so </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.047</div\n",
|
|
" ><div id='_tp_qulzdrsvmkxzooukcpkm_ind_7'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_7').style.opacity = 1; document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_7').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_7').style.opacity = 0; document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_7').style.opacity = 0;\"\n",
|
|
" >damned </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>1.644</div\n",
|
|
" ><div id='_tp_qulzdrsvmkxzooukcpkm_ind_8'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.3457318280847692); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_8').style.opacity = 1; document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_8').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_8').style.opacity = 0; document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_8').style.opacity = 0;\"\n",
|
|
" >hopeful </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.174 / 2</div\n",
|
|
" ><div id='_tp_qulzdrsvmkxzooukcpkm_ind_9'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.030421865715983164); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_9').style.opacity = 1; document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_9').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_9').style.opacity = 0; document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_9').style.opacity = 0;\"\n",
|
|
" >just from </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.071 / 2</div\n",
|
|
" ><div id='_tp_qulzdrsvmkxzooukcpkm_ind_10'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_10').style.opacity = 1; document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_10').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_10').style.opacity = 0; document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_10').style.opacity = 0;\"\n",
|
|
" >being around </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.098 / 2</div\n",
|
|
" ><div id='_tp_qulzdrsvmkxzooukcpkm_ind_11'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.014656367597544035); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_11').style.opacity = 1; document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_11').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_11').style.opacity = 0; document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_11').style.opacity = 0;\"\n",
|
|
" >someone who </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.084</div\n",
|
|
" ><div id='_tp_qulzdrsvmkxzooukcpkm_ind_12'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.014656367597544035); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_12').style.opacity = 1; document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_12').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_12').style.opacity = 0; document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_12').style.opacity = 0;\"\n",
|
|
" >cares </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.059</div\n",
|
|
" ><div id='_tp_qulzdrsvmkxzooukcpkm_ind_13'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_13').style.opacity = 1; document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_13').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_13').style.opacity = 0; document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_13').style.opacity = 0;\"\n",
|
|
" >and </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.093</div\n",
|
|
" ><div id='_tp_qulzdrsvmkxzooukcpkm_ind_14'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.014656367597544035); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_14').style.opacity = 1; document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_14').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_14').style.opacity = 0; document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_14').style.opacity = 0;\"\n",
|
|
" >is </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.326</div\n",
|
|
" ><div id='_tp_qulzdrsvmkxzooukcpkm_ind_15'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.06195286195286207); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_15').style.opacity = 1; document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_15').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_15').style.opacity = 0; document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_15').style.opacity = 0;\"\n",
|
|
" >awake</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_qulzdrsvmkxzooukcpkm_ind_16'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_16').style.opacity = 1; document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_16').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_qulzdrsvmkxzooukcpkm_ind_16').style.opacity = 0; document.getElementById('_fs_qulzdrsvmkxzooukcpkm_ind_16').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_bgksouvlavqavwefwxrm_output_2' style='display: none';><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"49.99634084343776%\" y1=\"33\" x2=\"49.99634084343776%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"49.99634084343776%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1</text><line x1=\"34.135128947971666%\" y1=\"33\" x2=\"34.135128947971666%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"34.135128947971666%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"18.273917052505578%\" y1=\"33\" x2=\"18.273917052505578%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"18.273917052505578%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7</text><line x1=\"65.85755273890385%\" y1=\"33\" x2=\"65.85755273890385%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"65.85755273890385%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">2</text><line x1=\"81.71876463436993%\" y1=\"33\" x2=\"81.71876463436993%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"81.71876463436993%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">5</text><line x1=\"43.42707635420408%\" y1=\"33\" x2=\"43.42707635420408%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"43.42707635420408%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2.24251</text><text x=\"43.42707635420408%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2.24251</text><text x=\"43.42707635420408%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"18.747303098315985%\" y1=\"33\" x2=\"18.747303098315985%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"18.747303098315985%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.91046</text><text x=\"18.747303098315985%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.91046</text><text x=\"18.747303098315985%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">love</tspan>(inputs)</text><rect x=\"16.124914155223617%\" width=\"2.622388943092365%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"17.604684454996864%\" x2=\"18.747303098315985%\" y1=\"60\" y2=\"60\" id=\"_fb_pfqfvslmusrrxqquxsux_ind_12\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"18.175993776656426%\" y=\"71\" font-size=\"12px\" id=\"_fs_pfqfvslmusrrxqquxsux_ind_12\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.216</text><svg x=\"17.604684454996864%\" y=\"40\" height=\"20\" width=\"1.1426186433191212%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">cares</text> </svg></svg><line x1=\"16.71553064882438%\" x2=\"17.604684454996864%\" y1=\"60\" y2=\"60\" id=\"_fb_pfqfvslmusrrxqquxsux_ind_6\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"17.16010755191062%\" y=\"71\" font-size=\"12px\" id=\"_fs_pfqfvslmusrrxqquxsux_ind_6\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.168</text><svg x=\"16.71553064882438%\" y=\"40\" height=\"20\" width=\"0.8891538061724837%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to so</text> </svg></svg><line x1=\"16.130806938405133%\" x2=\"16.71553064882438%\" y1=\"60\" y2=\"60\" id=\"_fb_pfqfvslmusrrxqquxsux_ind_7\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"16.423168793614757%\" y=\"71\" font-size=\"12px\" id=\"_fs_pfqfvslmusrrxqquxsux_ind_7\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.111</text><svg x=\"16.130806938405133%\" y=\"40\" height=\"20\" width=\"0.5847237104192473%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">damned</text> </svg></svg><line x1=\"16.124914217703903%\" x2=\"16.130806938405133%\" y1=\"60\" y2=\"60\" id=\"_fb_pfqfvslmusrrxqquxsux_ind_10\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"16.127860578054516%\" y=\"71\" font-size=\"12px\" id=\"_fs_pfqfvslmusrrxqquxsux_ind_10\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.001</text><svg x=\"16.124914217703903%\" y=\"40\" height=\"20\" width=\"0.005892720701229592%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">being around</text> </svg></svg><line x1=\"16.124914155223628%\" x2=\"16.124914217703903%\" y1=\"60\" y2=\"60\" id=\"_fb_pfqfvslmusrrxqquxsux_ind_16\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"16.124914186463766%\" y=\"71\" font-size=\"12px\" id=\"_fs_pfqfvslmusrrxqquxsux_ind_16\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"16.124914155223628%\" y=\"40\" height=\"20\" width=\"6.248027517585797e-08%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"17.604684454996864%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"17.604684454996864%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"17.604684454996864%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"17.604684454996864%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"17.604684454996864%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"17.604684454996864%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"17.604684454996864%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"17.604684454996864%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"16.71553064882438%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"16.71553064882438%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"16.71553064882438%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"16.71553064882438%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"16.71553064882438%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"16.71553064882438%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"16.71553064882438%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"16.71553064882438%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"16.130806938405133%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"16.130806938405133%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"16.130806938405133%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"16.130806938405133%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"16.130806938405133%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"16.130806938405133%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"16.130806938405133%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"16.130806938405133%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"16.124914217703903%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"16.124914217703903%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"16.124914217703903%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"16.124914217703903%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"16.124914217703903%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"16.124914217703903%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"16.124914217703903%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"16.124914217703903%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"18.747303098315985%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"16.124914155223617%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"18.747303098315985%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"17.604684454996864%\" y=\"40\" height=\"20\" width=\"1.1426186433191212%\" onmouseover=\"document.getElementById('_tp_pfqfvslmusrrxqquxsux_ind_12').style.textDecoration = 'underline';document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_12').style.opacity = 1;document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_12').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pfqfvslmusrrxqquxsux_ind_12').style.textDecoration = 'none';document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_12').style.opacity = 0;document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_12').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"17.604684454996864%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"16.71553064882438%\" y=\"40\" height=\"20\" width=\"0.8891538061724837%\" onmouseover=\"document.getElementById('_tp_pfqfvslmusrrxqquxsux_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_6').style.opacity = 1;document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pfqfvslmusrrxqquxsux_ind_6').style.textDecoration = 'none';document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_6').style.opacity = 0;document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"16.71553064882438%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"16.130806938405133%\" y=\"40\" height=\"20\" width=\"0.5847237104192473%\" onmouseover=\"document.getElementById('_tp_pfqfvslmusrrxqquxsux_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_7').style.opacity = 1;document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pfqfvslmusrrxqquxsux_ind_7').style.textDecoration = 'none';document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_7').style.opacity = 0;document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"16.130806938405133%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"16.124914217703903%\" y=\"40\" height=\"20\" width=\"0.005892720701229592%\" onmouseover=\"document.getElementById('_tp_pfqfvslmusrrxqquxsux_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_10').style.opacity = 1;document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pfqfvslmusrrxqquxsux_ind_10').style.textDecoration = 'none';document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_10').style.opacity = 0;document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"16.124914155223628%\" y=\"40\" height=\"20\" width=\"6.248027517585797e-08%\" onmouseover=\"document.getElementById('_tp_pfqfvslmusrrxqquxsux_ind_16').style.textDecoration = 'underline';document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_16').style.opacity = 1;document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_16').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pfqfvslmusrrxqquxsux_ind_16').style.textDecoration = 'none';document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_16').style.opacity = 0;document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_16').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"18.747303098315985%\" width=\"27.30216219898045%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"18.747303098315985%\" x2=\"28.10911118167423%\" y1=\"60\" y2=\"60\" id=\"_fb_pfqfvslmusrrxqquxsux_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"23.42820713999511%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_pfqfvslmusrrxqquxsux_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.771</text><svg x=\"18.747303098315985%\" y=\"40\" height=\"20\" width=\"9.361808083358245%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeless</text> </svg></svg><line x1=\"28.10911118167423%\" x2=\"36.39550905494069%\" y1=\"60\" y2=\"60\" id=\"_fb_pfqfvslmusrrxqquxsux_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"32.25231011830746%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_pfqfvslmusrrxqquxsux_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.567</text><svg x=\"28.10911118167423%\" y=\"40\" height=\"20\" width=\"8.28639787326646%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feeling</text> </svg></svg><line x1=\"36.39550905494069%\" x2=\"39.42132891028255%\" y1=\"60\" y2=\"60\" id=\"_fb_pfqfvslmusrrxqquxsux_ind_8\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"37.90841898261162%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_pfqfvslmusrrxqquxsux_ind_8\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.572</text><svg x=\"36.39550905494069%\" y=\"40\" height=\"20\" width=\"3.025819855341858%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeful</text> </svg></svg><line x1=\"39.42132891028255%\" x2=\"40.77305701552812%\" y1=\"60\" y2=\"60\" id=\"_fb_pfqfvslmusrrxqquxsux_ind_15\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"40.09719296290533%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_pfqfvslmusrrxqquxsux_ind_15\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.256</text><svg x=\"39.42132891028255%\" y=\"40\" height=\"20\" width=\"1.35172810524557%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">awake</text> </svg></svg><line x1=\"40.77305701552812%\" x2=\"42.049256510040216%\" y1=\"60\" y2=\"60\" id=\"_fb_pfqfvslmusrrxqquxsux_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"41.41115676278417%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_pfqfvslmusrrxqquxsux_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.241</text><svg x=\"40.77305701552812%\" y=\"40\" height=\"20\" width=\"1.276199494512099%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><line x1=\"42.049256510040216%\" x2=\"42.91317287797144%\" y1=\"60\" y2=\"60\" id=\"_fb_pfqfvslmusrrxqquxsux_ind_9\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"42.48121469400583%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_pfqfvslmusrrxqquxsux_ind_9\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.163</text><svg x=\"42.049256510040216%\" y=\"40\" height=\"20\" width=\"0.8639163679312247%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">just from</text> </svg></svg><line x1=\"42.91317287797144%\" x2=\"43.693872697295724%\" y1=\"60\" y2=\"60\" id=\"_fb_pfqfvslmusrrxqquxsux_ind_14\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"43.30352278763358%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_pfqfvslmusrrxqquxsux_ind_14\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.148</text><svg x=\"42.91317287797144%\" y=\"40\" height=\"20\" width=\"0.7806998193242833%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">is</text> </svg></svg><line x1=\"43.693872697295724%\" x2=\"44.328193222550155%\" y1=\"60\" y2=\"60\" id=\"_fb_pfqfvslmusrrxqquxsux_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"44.01103295992294%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_pfqfvslmusrrxqquxsux_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.12</text><svg x=\"43.693872697295724%\" y=\"40\" height=\"20\" width=\"0.6343205252544308%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"44.328193222550155%\" x2=\"44.904296953795395%\" y1=\"60\" y2=\"60\" id=\"_fb_pfqfvslmusrrxqquxsux_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"44.616245088172775%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_pfqfvslmusrrxqquxsux_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.109</text><svg x=\"44.328193222550155%\" y=\"40\" height=\"20\" width=\"0.5761037312452402%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">can go</text> </svg></svg><line x1=\"44.904296953795395%\" x2=\"45.39236823445534%\" y1=\"60\" y2=\"60\" id=\"_fb_pfqfvslmusrrxqquxsux_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"45.148332594125364%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_pfqfvslmusrrxqquxsux_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.092</text><svg x=\"44.904296953795395%\" y=\"40\" height=\"20\" width=\"0.48807128065994476%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><line x1=\"45.39236823445534%\" x2=\"45.8450390950529%\" y1=\"60\" y2=\"60\" id=\"_fb_pfqfvslmusrrxqquxsux_ind_13\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"45.61870366475412%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_pfqfvslmusrrxqquxsux_ind_13\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.086</text><svg x=\"45.39236823445534%\" y=\"40\" height=\"20\" width=\"0.4526708605975571%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">and</text> </svg></svg><line x1=\"45.8450390950529%\" x2=\"46.049465297296436%\" y1=\"60\" y2=\"60\" id=\"_fb_pfqfvslmusrrxqquxsux_ind_11\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"45.94725219617467%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_pfqfvslmusrrxqquxsux_ind_11\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.039</text><svg x=\"45.8450390950529%\" y=\"40\" height=\"20\" width=\"0.20442620224353902%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">someone who</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"28.10911118167423%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"28.10911118167423%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"28.10911118167423%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"28.10911118167423%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"28.10911118167423%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"28.10911118167423%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"28.10911118167423%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"28.10911118167423%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"36.39550905494069%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"36.39550905494069%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"36.39550905494069%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"36.39550905494069%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"36.39550905494069%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"36.39550905494069%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"36.39550905494069%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"36.39550905494069%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"39.42132891028255%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"39.42132891028255%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"39.42132891028255%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"39.42132891028255%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"39.42132891028255%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"39.42132891028255%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"39.42132891028255%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"39.42132891028255%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"40.77305701552812%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"40.77305701552812%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"40.77305701552812%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"40.77305701552812%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"40.77305701552812%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"40.77305701552812%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"40.77305701552812%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"40.77305701552812%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"42.049256510040216%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"42.049256510040216%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"42.049256510040216%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"42.049256510040216%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"42.049256510040216%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"42.049256510040216%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"42.049256510040216%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"42.049256510040216%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"42.91317287797144%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"42.91317287797144%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"42.91317287797144%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"42.91317287797144%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"42.91317287797144%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"42.91317287797144%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"42.91317287797144%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"42.91317287797144%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"43.693872697295724%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"43.693872697295724%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"43.693872697295724%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"43.693872697295724%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"43.693872697295724%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"43.693872697295724%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"43.693872697295724%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"43.693872697295724%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"44.328193222550155%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"44.328193222550155%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"44.328193222550155%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"44.328193222550155%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"44.328193222550155%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"44.328193222550155%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"44.328193222550155%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"44.328193222550155%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"44.904296953795395%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"44.904296953795395%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"44.904296953795395%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"44.904296953795395%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"44.904296953795395%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"44.904296953795395%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"44.904296953795395%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"44.904296953795395%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"45.39236823445534%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"45.39236823445534%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"45.39236823445534%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"45.39236823445534%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"45.39236823445534%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"45.39236823445534%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"45.39236823445534%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"45.39236823445534%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"45.8450390950529%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"45.8450390950529%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"45.8450390950529%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"45.8450390950529%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"45.8450390950529%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"45.8450390950529%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"45.8450390950529%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"45.8450390950529%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"18.747303098315985%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"46.049465297296436%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"28.10911118167423%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"18.747303098315985%\" y=\"40\" height=\"20\" width=\"9.361808083358245%\" onmouseover=\"document.getElementById('_tp_pfqfvslmusrrxqquxsux_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_5').style.opacity = 1;document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pfqfvslmusrrxqquxsux_ind_5').style.textDecoration = 'none';document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_5').style.opacity = 0;document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"36.39550905494069%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"28.10911118167423%\" y=\"40\" height=\"20\" width=\"8.28639787326646%\" onmouseover=\"document.getElementById('_tp_pfqfvslmusrrxqquxsux_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_3').style.opacity = 1;document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pfqfvslmusrrxqquxsux_ind_3').style.textDecoration = 'none';document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_3').style.opacity = 0;document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"39.42132891028255%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"36.39550905494069%\" y=\"40\" height=\"20\" width=\"3.025819855341858%\" onmouseover=\"document.getElementById('_tp_pfqfvslmusrrxqquxsux_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_8').style.opacity = 1;document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pfqfvslmusrrxqquxsux_ind_8').style.textDecoration = 'none';document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_8').style.opacity = 0;document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"40.77305701552812%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"39.42132891028255%\" y=\"40\" height=\"20\" width=\"1.35172810524557%\" onmouseover=\"document.getElementById('_tp_pfqfvslmusrrxqquxsux_ind_15').style.textDecoration = 'underline';document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_15').style.opacity = 1;document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_15').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pfqfvslmusrrxqquxsux_ind_15').style.textDecoration = 'none';document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_15').style.opacity = 0;document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_15').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"42.049256510040216%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"40.77305701552812%\" y=\"40\" height=\"20\" width=\"1.276199494512099%\" onmouseover=\"document.getElementById('_tp_pfqfvslmusrrxqquxsux_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_4').style.opacity = 1;document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pfqfvslmusrrxqquxsux_ind_4').style.textDecoration = 'none';document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_4').style.opacity = 0;document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"42.91317287797144%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"42.049256510040216%\" y=\"40\" height=\"20\" width=\"0.8639163679312247%\" onmouseover=\"document.getElementById('_tp_pfqfvslmusrrxqquxsux_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_9').style.opacity = 1;document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pfqfvslmusrrxqquxsux_ind_9').style.textDecoration = 'none';document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_9').style.opacity = 0;document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"43.693872697295724%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"42.91317287797144%\" y=\"40\" height=\"20\" width=\"0.7806998193242833%\" onmouseover=\"document.getElementById('_tp_pfqfvslmusrrxqquxsux_ind_14').style.textDecoration = 'underline';document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_14').style.opacity = 1;document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_14').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pfqfvslmusrrxqquxsux_ind_14').style.textDecoration = 'none';document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_14').style.opacity = 0;document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_14').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"44.328193222550155%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"43.693872697295724%\" y=\"40\" height=\"20\" width=\"0.6343205252544308%\" onmouseover=\"document.getElementById('_tp_pfqfvslmusrrxqquxsux_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_0').style.opacity = 1;document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pfqfvslmusrrxqquxsux_ind_0').style.textDecoration = 'none';document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_0').style.opacity = 0;document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"44.904296953795395%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"44.328193222550155%\" y=\"40\" height=\"20\" width=\"0.5761037312452402%\" onmouseover=\"document.getElementById('_tp_pfqfvslmusrrxqquxsux_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_1').style.opacity = 1;document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pfqfvslmusrrxqquxsux_ind_1').style.textDecoration = 'none';document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_1').style.opacity = 0;document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"45.39236823445534%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"44.904296953795395%\" y=\"40\" height=\"20\" width=\"0.48807128065994476%\" onmouseover=\"document.getElementById('_tp_pfqfvslmusrrxqquxsux_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_2').style.opacity = 1;document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pfqfvslmusrrxqquxsux_ind_2').style.textDecoration = 'none';document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_2').style.opacity = 0;document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"45.8450390950529%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"45.39236823445534%\" y=\"40\" height=\"20\" width=\"0.4526708605975571%\" onmouseover=\"document.getElementById('_tp_pfqfvslmusrrxqquxsux_ind_13').style.textDecoration = 'underline';document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_13').style.opacity = 1;document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_13').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pfqfvslmusrrxqquxsux_ind_13').style.textDecoration = 'none';document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_13').style.opacity = 0;document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_13').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"45.8450390950529%\" y=\"40\" height=\"20\" width=\"0.20442620224353902%\" onmouseover=\"document.getElementById('_tp_pfqfvslmusrrxqquxsux_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_11').style.opacity = 1;document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_pfqfvslmusrrxqquxsux_ind_11').style.textDecoration = 'none';document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_11').style.opacity = 0;document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.12 / 2</div\n",
|
|
" ><div id='_tp_pfqfvslmusrrxqquxsux_ind_0'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_0').style.opacity = 1; document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_0').style.opacity = 0; document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_0').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.109 / 2</div\n",
|
|
" ><div id='_tp_pfqfvslmusrrxqquxsux_ind_1'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_1').style.opacity = 1; document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_1').style.opacity = 0; document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_1').style.opacity = 0;\"\n",
|
|
" >can go </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.092</div\n",
|
|
" ><div id='_tp_pfqfvslmusrrxqquxsux_ind_2'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_2').style.opacity = 1; document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_2').style.opacity = 0; document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_2').style.opacity = 0;\"\n",
|
|
" >from </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.567</div\n",
|
|
" ><div id='_tp_pfqfvslmusrrxqquxsux_ind_3'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.22749059219647463); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_3').style.opacity = 1; document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_3').style.opacity = 0; document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_3').style.opacity = 0;\"\n",
|
|
" >feeling </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.241</div\n",
|
|
" ><div id='_tp_pfqfvslmusrrxqquxsux_ind_4'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03042186571598325); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_4').style.opacity = 1; document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_4').style.opacity = 0; document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_4').style.opacity = 0;\"\n",
|
|
" >so </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.771</div\n",
|
|
" ><div id='_tp_pfqfvslmusrrxqquxsux_ind_5'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.25113883937413345); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_5').style.opacity = 1; document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_5').style.opacity = 0; document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_5').style.opacity = 0;\"\n",
|
|
" >hopeless </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.168 / 2</div\n",
|
|
" ><div id='_tp_pfqfvslmusrrxqquxsux_ind_6'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.02253911665676371); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_6').style.opacity = 1; document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_6').style.opacity = 0; document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_6').style.opacity = 0;\"\n",
|
|
" >to so </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.111</div\n",
|
|
" ><div id='_tp_pfqfvslmusrrxqquxsux_ind_7'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.014656367597544035); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_7').style.opacity = 1; document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_7').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_7').style.opacity = 0; document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_7').style.opacity = 0;\"\n",
|
|
" >damned </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.572</div\n",
|
|
" ><div id='_tp_pfqfvslmusrrxqquxsux_ind_8'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.07771836007130117); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_8').style.opacity = 1; document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_8').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_8').style.opacity = 0; document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_8').style.opacity = 0;\"\n",
|
|
" >hopeful </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.163 / 2</div\n",
|
|
" ><div id='_tp_pfqfvslmusrrxqquxsux_ind_9'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.022539116656763607); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_9').style.opacity = 1; document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_9').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_9').style.opacity = 0; document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_9').style.opacity = 0;\"\n",
|
|
" >just from </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.001 / 2</div\n",
|
|
" ><div id='_tp_pfqfvslmusrrxqquxsux_ind_10'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_10').style.opacity = 1; document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_10').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_10').style.opacity = 0; document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_10').style.opacity = 0;\"\n",
|
|
" >being around </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.039 / 2</div\n",
|
|
" ><div id='_tp_pfqfvslmusrrxqquxsux_ind_11'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_11').style.opacity = 1; document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_11').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_11').style.opacity = 0; document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_11').style.opacity = 0;\"\n",
|
|
" >someone who </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.216</div\n",
|
|
" ><div id='_tp_pfqfvslmusrrxqquxsux_ind_12'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.030421865715983164); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_12').style.opacity = 1; document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_12').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_12').style.opacity = 0; document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_12').style.opacity = 0;\"\n",
|
|
" >cares </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.086</div\n",
|
|
" ><div id='_tp_pfqfvslmusrrxqquxsux_ind_13'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_13').style.opacity = 1; document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_13').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_13').style.opacity = 0; document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_13').style.opacity = 0;\"\n",
|
|
" >and </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.148</div\n",
|
|
" ><div id='_tp_pfqfvslmusrrxqquxsux_ind_14'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_14').style.opacity = 1; document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_14').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_14').style.opacity = 0; document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_14').style.opacity = 0;\"\n",
|
|
" >is </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.256</div\n",
|
|
" ><div id='_tp_pfqfvslmusrrxqquxsux_ind_15'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03042186571598325); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_15').style.opacity = 1; document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_15').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_15').style.opacity = 0; document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_15').style.opacity = 0;\"\n",
|
|
" >awake</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_pfqfvslmusrrxqquxsux_ind_16'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_16').style.opacity = 1; document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_16').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_pfqfvslmusrrxqquxsux_ind_16').style.opacity = 0; document.getElementById('_fs_pfqfvslmusrrxqquxsux_ind_16').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_bgksouvlavqavwefwxrm_output_2_zoom' style='display: none;'><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"43.762707165218764%\" y1=\"33\" x2=\"43.762707165218764%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"43.762707165218764%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-5</text><line x1=\"29.03511805159412%\" y1=\"33\" x2=\"29.03511805159412%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"29.03511805159412%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6</text><line x1=\"14.307528937969476%\" y1=\"33\" x2=\"14.307528937969476%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"14.307528937969476%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7</text><line x1=\"58.49029627884341%\" y1=\"33\" x2=\"58.49029627884341%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"58.49029627884341%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"73.21788539246805%\" y1=\"33\" x2=\"73.21788539246805%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"73.21788539246805%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-3</text><line x1=\"87.94547450609271%\" y1=\"33\" x2=\"87.94547450609271%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"87.94547450609271%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2</text><line x1=\"84.37381344631517%\" y1=\"33\" x2=\"84.37381344631517%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"84.37381344631517%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2.24251</text><text x=\"84.37381344631517%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2.24251</text><text x=\"84.37381344631517%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"15.626186406408959%\" y1=\"33\" x2=\"15.626186406408959%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"15.626186406408959%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.91046</text><text x=\"15.626186406408959%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.91046</text><text x=\"15.626186406408959%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">love</tspan>(inputs)</text><rect x=\"8.32129688639378%\" width=\"7.304889520015174%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"12.4433240873232%\" x2=\"15.626186406408959%\" y1=\"60\" y2=\"60\" id=\"_fb_kzpwhiapvpyenhrlvcbb_ind_12\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"14.03475524686608%\" y=\"71\" font-size=\"12px\" id=\"_fs_kzpwhiapvpyenhrlvcbb_ind_12\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.216</text><svg x=\"12.4433240873232%\" y=\"40\" height=\"20\" width=\"3.182862319085759%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">cares</text> </svg></svg><line x1=\"9.966509830803435%\" x2=\"12.4433240873232%\" y1=\"60\" y2=\"60\" id=\"_fb_kzpwhiapvpyenhrlvcbb_ind_6\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"11.204916959063318%\" y=\"71\" font-size=\"12px\" id=\"_fs_kzpwhiapvpyenhrlvcbb_ind_6\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.168</text><svg x=\"9.966509830803435%\" y=\"40\" height=\"20\" width=\"2.4768142565197646%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to so</text> </svg></svg><line x1=\"8.337711739811981%\" x2=\"9.966509830803435%\" y1=\"60\" y2=\"60\" id=\"_fb_kzpwhiapvpyenhrlvcbb_ind_7\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"9.152110785307709%\" y=\"71\" font-size=\"12px\" id=\"_fs_kzpwhiapvpyenhrlvcbb_ind_7\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.111</text><svg x=\"8.337711739811981%\" y=\"40\" height=\"20\" width=\"1.6287980909914541%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">damned</text> </svg></svg><line x1=\"8.321297060437978%\" x2=\"8.337711739811981%\" y1=\"60\" y2=\"60\" id=\"_fb_kzpwhiapvpyenhrlvcbb_ind_10\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.329504400124979%\" y=\"71\" font-size=\"12px\" id=\"_fs_kzpwhiapvpyenhrlvcbb_ind_10\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.001</text><svg x=\"8.321297060437978%\" y=\"40\" height=\"20\" width=\"0.016414679374003427%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">being around</text> </svg></svg><line x1=\"8.321296886393807%\" x2=\"8.321297060437978%\" y1=\"60\" y2=\"60\" id=\"_fb_kzpwhiapvpyenhrlvcbb_ind_16\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.321296973415892%\" y=\"71\" font-size=\"12px\" id=\"_fs_kzpwhiapvpyenhrlvcbb_ind_16\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"8.321296886393807%\" y=\"40\" height=\"20\" width=\"1.7404417107513837e-07%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"12.4433240873232%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"12.4433240873232%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"12.4433240873232%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"12.4433240873232%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"12.4433240873232%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"12.4433240873232%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"12.4433240873232%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"12.4433240873232%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"9.966509830803435%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"9.966509830803435%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"9.966509830803435%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"9.966509830803435%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"9.966509830803435%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"9.966509830803435%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"9.966509830803435%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"9.966509830803435%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.337711739811981%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.337711739811981%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.337711739811981%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.337711739811981%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.337711739811981%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.337711739811981%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.337711739811981%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.337711739811981%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.321297060437978%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.321297060437978%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.321297060437978%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.321297060437978%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.321297060437978%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.321297060437978%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.321297060437978%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.321297060437978%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"15.626186406408959%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.32129688639378%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"15.626186406408959%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"12.4433240873232%\" y=\"40\" height=\"20\" width=\"3.182862319085759%\" onmouseover=\"document.getElementById('_tp_kzpwhiapvpyenhrlvcbb_ind_12').style.textDecoration = 'underline';document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_12').style.opacity = 1;document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_12').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kzpwhiapvpyenhrlvcbb_ind_12').style.textDecoration = 'none';document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_12').style.opacity = 0;document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_12').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"12.4433240873232%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"9.966509830803435%\" y=\"40\" height=\"20\" width=\"2.4768142565197646%\" onmouseover=\"document.getElementById('_tp_kzpwhiapvpyenhrlvcbb_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_6').style.opacity = 1;document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kzpwhiapvpyenhrlvcbb_ind_6').style.textDecoration = 'none';document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_6').style.opacity = 0;document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"9.966509830803435%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.337711739811981%\" y=\"40\" height=\"20\" width=\"1.6287980909914541%\" onmouseover=\"document.getElementById('_tp_kzpwhiapvpyenhrlvcbb_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_7').style.opacity = 1;document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kzpwhiapvpyenhrlvcbb_ind_7').style.textDecoration = 'none';document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_7').style.opacity = 0;document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"8.337711739811981%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.321297060437978%\" y=\"40\" height=\"20\" width=\"0.016414679374003427%\" onmouseover=\"document.getElementById('_tp_kzpwhiapvpyenhrlvcbb_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_10').style.opacity = 1;document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kzpwhiapvpyenhrlvcbb_ind_10').style.textDecoration = 'none';document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_10').style.opacity = 0;document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"8.321296886393807%\" y=\"40\" height=\"20\" width=\"1.7404417107513837e-07%\" onmouseover=\"document.getElementById('_tp_kzpwhiapvpyenhrlvcbb_ind_16').style.textDecoration = 'underline';document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_16').style.opacity = 1;document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_16').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kzpwhiapvpyenhrlvcbb_ind_16').style.textDecoration = 'none';document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_16').style.opacity = 0;document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_16').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"15.626186406408959%\" width=\"76.05251655992134%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"15.626186406408959%\" x2=\"41.70430648720594%\" y1=\"60\" y2=\"60\" id=\"_fb_kzpwhiapvpyenhrlvcbb_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"28.66524644680745%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kzpwhiapvpyenhrlvcbb_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.771</text><svg x=\"15.626186406408959%\" y=\"40\" height=\"20\" width=\"26.07812008079698%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeless</text> </svg></svg><line x1=\"41.70430648720594%\" x2=\"64.78677910918121%\" y1=\"60\" y2=\"60\" id=\"_fb_kzpwhiapvpyenhrlvcbb_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"53.245542798193576%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kzpwhiapvpyenhrlvcbb_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.567</text><svg x=\"41.70430648720594%\" y=\"40\" height=\"20\" width=\"23.08247262197527%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feeling</text> </svg></svg><line x1=\"64.78677910918121%\" x2=\"73.21546006780211%\" y1=\"60\" y2=\"60\" id=\"_fb_kzpwhiapvpyenhrlvcbb_ind_8\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"69.00111958849166%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kzpwhiapvpyenhrlvcbb_ind_8\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.572</text><svg x=\"64.78677910918121%\" y=\"40\" height=\"20\" width=\"8.428680958620902%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeful</text> </svg></svg><line x1=\"73.21546006780211%\" x2=\"76.98081474408993%\" y1=\"60\" y2=\"60\" id=\"_fb_kzpwhiapvpyenhrlvcbb_ind_15\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"75.09813740594602%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kzpwhiapvpyenhrlvcbb_ind_15\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.256</text><svg x=\"73.21546006780211%\" y=\"40\" height=\"20\" width=\"3.7653546762878136%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">awake</text> </svg></svg><line x1=\"76.98081474408993%\" x2=\"80.53577799142458%\" y1=\"60\" y2=\"60\" id=\"_fb_kzpwhiapvpyenhrlvcbb_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"78.75829636775725%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kzpwhiapvpyenhrlvcbb_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.241</text><svg x=\"76.98081474408993%\" y=\"40\" height=\"20\" width=\"3.554963247334655%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><line x1=\"80.53577799142458%\" x2=\"82.94229119721493%\" y1=\"60\" y2=\"60\" id=\"_fb_kzpwhiapvpyenhrlvcbb_ind_9\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"81.73903459431975%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kzpwhiapvpyenhrlvcbb_ind_9\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.163</text><svg x=\"80.53577799142458%\" y=\"40\" height=\"20\" width=\"2.406513205790347%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">just from</text> </svg></svg><line x1=\"82.94229119721493%\" x2=\"85.11699756313436%\" y1=\"60\" y2=\"60\" id=\"_fb_kzpwhiapvpyenhrlvcbb_ind_14\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"84.02964438017464%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kzpwhiapvpyenhrlvcbb_ind_14\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.148</text><svg x=\"82.94229119721493%\" y=\"40\" height=\"20\" width=\"2.174706365919434%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">is</text> </svg></svg><line x1=\"85.11699756313436%\" x2=\"86.88395183948877%\" y1=\"60\" y2=\"60\" id=\"_fb_kzpwhiapvpyenhrlvcbb_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"86.00047470131156%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kzpwhiapvpyenhrlvcbb_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.12</text><svg x=\"85.11699756313436%\" y=\"40\" height=\"20\" width=\"1.7669542763544115%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"86.88395183948877%\" x2=\"88.48873823850877%\" y1=\"60\" y2=\"60\" id=\"_fb_kzpwhiapvpyenhrlvcbb_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"87.68634503899878%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kzpwhiapvpyenhrlvcbb_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.109</text><svg x=\"86.88395183948877%\" y=\"40\" height=\"20\" width=\"1.60478639902%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">can go</text> </svg></svg><line x1=\"88.48873823850877%\" x2=\"89.8483026892759%\" y1=\"60\" y2=\"60\" id=\"_fb_kzpwhiapvpyenhrlvcbb_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"89.16852046389234%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kzpwhiapvpyenhrlvcbb_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.092</text><svg x=\"88.48873823850877%\" y=\"40\" height=\"20\" width=\"1.3595644507671238%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><line x1=\"89.8483026892759%\" x2=\"91.10925623100948%\" y1=\"60\" y2=\"60\" id=\"_fb_kzpwhiapvpyenhrlvcbb_ind_13\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"90.47877946014269%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kzpwhiapvpyenhrlvcbb_ind_13\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.086</text><svg x=\"89.8483026892759%\" y=\"40\" height=\"20\" width=\"1.2609535417335849%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">and</text> </svg></svg><line x1=\"91.10925623100948%\" x2=\"91.67870296633032%\" y1=\"60\" y2=\"60\" id=\"_fb_kzpwhiapvpyenhrlvcbb_ind_11\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.3939795986699%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kzpwhiapvpyenhrlvcbb_ind_11\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.039</text><svg x=\"91.10925623100948%\" y=\"40\" height=\"20\" width=\"0.5694467353208381%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">someone who</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"41.70430648720594%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"41.70430648720594%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"41.70430648720594%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"41.70430648720594%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"41.70430648720594%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"41.70430648720594%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"41.70430648720594%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"41.70430648720594%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"64.78677910918121%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"64.78677910918121%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"64.78677910918121%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"64.78677910918121%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"64.78677910918121%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"64.78677910918121%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"64.78677910918121%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"64.78677910918121%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"73.21546006780211%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"73.21546006780211%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"73.21546006780211%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"73.21546006780211%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"73.21546006780211%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"73.21546006780211%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"73.21546006780211%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"73.21546006780211%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"76.98081474408993%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"76.98081474408993%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"76.98081474408993%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"76.98081474408993%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"76.98081474408993%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"76.98081474408993%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"76.98081474408993%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"76.98081474408993%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"80.53577799142458%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"80.53577799142458%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"80.53577799142458%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"80.53577799142458%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"80.53577799142458%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"80.53577799142458%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"80.53577799142458%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"80.53577799142458%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"82.94229119721493%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"82.94229119721493%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"82.94229119721493%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"82.94229119721493%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"82.94229119721493%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"82.94229119721493%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"82.94229119721493%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"82.94229119721493%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"85.11699756313436%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"85.11699756313436%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"85.11699756313436%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"85.11699756313436%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"85.11699756313436%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"85.11699756313436%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"85.11699756313436%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"85.11699756313436%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"86.88395183948877%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"86.88395183948877%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"86.88395183948877%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"86.88395183948877%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"86.88395183948877%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"86.88395183948877%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"86.88395183948877%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"86.88395183948877%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"88.48873823850877%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"88.48873823850877%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"88.48873823850877%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"88.48873823850877%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"88.48873823850877%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"88.48873823850877%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"88.48873823850877%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"88.48873823850877%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"89.8483026892759%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"89.8483026892759%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"89.8483026892759%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"89.8483026892759%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"89.8483026892759%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"89.8483026892759%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"89.8483026892759%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"89.8483026892759%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.10925623100948%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.10925623100948%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.10925623100948%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.10925623100948%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.10925623100948%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.10925623100948%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.10925623100948%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.10925623100948%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"15.626186406408959%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.67870296633032%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"41.70430648720594%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"15.626186406408959%\" y=\"40\" height=\"20\" width=\"26.07812008079698%\" onmouseover=\"document.getElementById('_tp_kzpwhiapvpyenhrlvcbb_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_5').style.opacity = 1;document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kzpwhiapvpyenhrlvcbb_ind_5').style.textDecoration = 'none';document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_5').style.opacity = 0;document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"64.78677910918121%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"41.70430648720594%\" y=\"40\" height=\"20\" width=\"23.08247262197527%\" onmouseover=\"document.getElementById('_tp_kzpwhiapvpyenhrlvcbb_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_3').style.opacity = 1;document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kzpwhiapvpyenhrlvcbb_ind_3').style.textDecoration = 'none';document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_3').style.opacity = 0;document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"73.21546006780211%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"64.78677910918121%\" y=\"40\" height=\"20\" width=\"8.428680958620902%\" onmouseover=\"document.getElementById('_tp_kzpwhiapvpyenhrlvcbb_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_8').style.opacity = 1;document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kzpwhiapvpyenhrlvcbb_ind_8').style.textDecoration = 'none';document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_8').style.opacity = 0;document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"76.98081474408993%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"73.21546006780211%\" y=\"40\" height=\"20\" width=\"3.7653546762878136%\" onmouseover=\"document.getElementById('_tp_kzpwhiapvpyenhrlvcbb_ind_15').style.textDecoration = 'underline';document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_15').style.opacity = 1;document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_15').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kzpwhiapvpyenhrlvcbb_ind_15').style.textDecoration = 'none';document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_15').style.opacity = 0;document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_15').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"80.53577799142458%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"76.98081474408993%\" y=\"40\" height=\"20\" width=\"3.554963247334655%\" onmouseover=\"document.getElementById('_tp_kzpwhiapvpyenhrlvcbb_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_4').style.opacity = 1;document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kzpwhiapvpyenhrlvcbb_ind_4').style.textDecoration = 'none';document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_4').style.opacity = 0;document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"82.94229119721493%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"80.53577799142458%\" y=\"40\" height=\"20\" width=\"2.406513205790347%\" onmouseover=\"document.getElementById('_tp_kzpwhiapvpyenhrlvcbb_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_9').style.opacity = 1;document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kzpwhiapvpyenhrlvcbb_ind_9').style.textDecoration = 'none';document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_9').style.opacity = 0;document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"85.11699756313436%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"82.94229119721493%\" y=\"40\" height=\"20\" width=\"2.174706365919434%\" onmouseover=\"document.getElementById('_tp_kzpwhiapvpyenhrlvcbb_ind_14').style.textDecoration = 'underline';document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_14').style.opacity = 1;document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_14').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kzpwhiapvpyenhrlvcbb_ind_14').style.textDecoration = 'none';document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_14').style.opacity = 0;document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_14').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"86.88395183948877%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"85.11699756313436%\" y=\"40\" height=\"20\" width=\"1.7669542763544115%\" onmouseover=\"document.getElementById('_tp_kzpwhiapvpyenhrlvcbb_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_0').style.opacity = 1;document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kzpwhiapvpyenhrlvcbb_ind_0').style.textDecoration = 'none';document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_0').style.opacity = 0;document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"88.48873823850877%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"86.88395183948877%\" y=\"40\" height=\"20\" width=\"1.60478639902%\" onmouseover=\"document.getElementById('_tp_kzpwhiapvpyenhrlvcbb_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_1').style.opacity = 1;document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kzpwhiapvpyenhrlvcbb_ind_1').style.textDecoration = 'none';document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_1').style.opacity = 0;document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"89.8483026892759%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"88.48873823850877%\" y=\"40\" height=\"20\" width=\"1.3595644507671238%\" onmouseover=\"document.getElementById('_tp_kzpwhiapvpyenhrlvcbb_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_2').style.opacity = 1;document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kzpwhiapvpyenhrlvcbb_ind_2').style.textDecoration = 'none';document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_2').style.opacity = 0;document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.10925623100948%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"89.8483026892759%\" y=\"40\" height=\"20\" width=\"1.2609535417335849%\" onmouseover=\"document.getElementById('_tp_kzpwhiapvpyenhrlvcbb_ind_13').style.textDecoration = 'underline';document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_13').style.opacity = 1;document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_13').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kzpwhiapvpyenhrlvcbb_ind_13').style.textDecoration = 'none';document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_13').style.opacity = 0;document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_13').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"91.10925623100948%\" y=\"40\" height=\"20\" width=\"0.5694467353208381%\" onmouseover=\"document.getElementById('_tp_kzpwhiapvpyenhrlvcbb_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_11').style.opacity = 1;document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kzpwhiapvpyenhrlvcbb_ind_11').style.textDecoration = 'none';document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_11').style.opacity = 0;document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.12 / 2</div\n",
|
|
" ><div id='_tp_kzpwhiapvpyenhrlvcbb_ind_0'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.06195286195286191); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_0').style.opacity = 1; document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_0').style.opacity = 0; document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_0').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.109 / 2</div\n",
|
|
" ><div id='_tp_kzpwhiapvpyenhrlvcbb_ind_1'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.05407011289364222); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_1').style.opacity = 1; document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_1').style.opacity = 0; document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_1').style.opacity = 0;\"\n",
|
|
" >can go </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.092</div\n",
|
|
" ><div id='_tp_kzpwhiapvpyenhrlvcbb_ind_2'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.04618736383442258); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_2').style.opacity = 1; document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_2').style.opacity = 0; document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_2').style.opacity = 0;\"\n",
|
|
" >from </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.567</div\n",
|
|
" ><div id='_tp_kzpwhiapvpyenhrlvcbb_ind_3'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.8896415131709249); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_3').style.opacity = 1; document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_3').style.opacity = 0; document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_3').style.opacity = 0;\"\n",
|
|
" >feeling </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.241</div\n",
|
|
" ><div id='_tp_kzpwhiapvpyenhrlvcbb_ind_4'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.1328976034858387); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_4').style.opacity = 1; document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_4').style.opacity = 0; document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_4').style.opacity = 0;\"\n",
|
|
" >so </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.771</div\n",
|
|
" ><div id='_tp_kzpwhiapvpyenhrlvcbb_ind_5'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 1.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_5').style.opacity = 1; document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_5').style.opacity = 0; document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_5').style.opacity = 0;\"\n",
|
|
" >hopeless </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.168 / 2</div\n",
|
|
" ><div id='_tp_kzpwhiapvpyenhrlvcbb_ind_6'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.09348385818974037); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_6').style.opacity = 1; document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_6').style.opacity = 0; document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_6').style.opacity = 0;\"\n",
|
|
" >to so </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.111</div\n",
|
|
" ><div id='_tp_kzpwhiapvpyenhrlvcbb_ind_7'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.05407011289364243); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_7').style.opacity = 1; document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_7').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_7').style.opacity = 0; document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_7').style.opacity = 0;\"\n",
|
|
" >damned </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.572</div\n",
|
|
" ><div id='_tp_kzpwhiapvpyenhrlvcbb_ind_8'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.3220835809071103); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_8').style.opacity = 1; document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_8').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_8').style.opacity = 0; document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_8').style.opacity = 0;\"\n",
|
|
" >hopeful </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.163 / 2</div\n",
|
|
" ><div id='_tp_kzpwhiapvpyenhrlvcbb_ind_9'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.08560110913052085); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_9').style.opacity = 1; document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_9').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_9').style.opacity = 0; document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_9').style.opacity = 0;\"\n",
|
|
" >just from </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.001 / 2</div\n",
|
|
" ><div id='_tp_kzpwhiapvpyenhrlvcbb_ind_10'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_10').style.opacity = 1; document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_10').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_10').style.opacity = 0; document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_10').style.opacity = 0;\"\n",
|
|
" >being around </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.039 / 2</div\n",
|
|
" ><div id='_tp_kzpwhiapvpyenhrlvcbb_ind_11'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_11').style.opacity = 1; document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_11').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_11').style.opacity = 0; document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_11').style.opacity = 0;\"\n",
|
|
" >someone who </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.216</div\n",
|
|
" ><div id='_tp_kzpwhiapvpyenhrlvcbb_ind_12'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.1171321053673995); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_12').style.opacity = 1; document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_12').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_12').style.opacity = 0; document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_12').style.opacity = 0;\"\n",
|
|
" >cares </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.086</div\n",
|
|
" ><div id='_tp_kzpwhiapvpyenhrlvcbb_ind_13'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.04618736383442258); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_13').style.opacity = 1; document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_13').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_13').style.opacity = 0; document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_13').style.opacity = 0;\"\n",
|
|
" >and </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.148</div\n",
|
|
" ><div id='_tp_kzpwhiapvpyenhrlvcbb_ind_14'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.07771836007130117); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_14').style.opacity = 1; document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_14').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_14').style.opacity = 0; document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_14').style.opacity = 0;\"\n",
|
|
" >is </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.256</div\n",
|
|
" ><div id='_tp_kzpwhiapvpyenhrlvcbb_ind_15'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.14078035254505836); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_15').style.opacity = 1; document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_15').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_15').style.opacity = 0; document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_15').style.opacity = 0;\"\n",
|
|
" >awake</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_kzpwhiapvpyenhrlvcbb_ind_16'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_16').style.opacity = 1; document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_16').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_kzpwhiapvpyenhrlvcbb_ind_16').style.opacity = 0; document.getElementById('_fs_kzpwhiapvpyenhrlvcbb_ind_16').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_bgksouvlavqavwefwxrm_output_3' style='display: none';><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"49.99634084343776%\" y1=\"33\" x2=\"49.99634084343776%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"49.99634084343776%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1</text><line x1=\"34.135128947971666%\" y1=\"33\" x2=\"34.135128947971666%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"34.135128947971666%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"18.273917052505578%\" y1=\"33\" x2=\"18.273917052505578%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"18.273917052505578%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7</text><line x1=\"65.85755273890385%\" y1=\"33\" x2=\"65.85755273890385%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"65.85755273890385%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">2</text><line x1=\"81.71876463436993%\" y1=\"33\" x2=\"81.71876463436993%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"81.71876463436993%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">5</text><line x1=\"50.068398697462456%\" y1=\"33\" x2=\"50.068398697462456%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"50.068398697462456%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.986371</text><text x=\"50.068398697462456%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.986371</text><text x=\"50.068398697462456%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"14.690817109145998%\" y1=\"33\" x2=\"14.690817109145998%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"14.690817109145998%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7.67771</text><text x=\"14.690817109145998%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7.67771</text><text x=\"14.690817109145998%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">anger</tspan>(inputs)</text><rect x=\"13.629362328776507%\" width=\"1.0614547803694891%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"14.023414445601443%\" x2=\"14.690817109145998%\" y1=\"60\" y2=\"60\" id=\"_fb_smwsbodbrxwyhhbjesvt_ind_7\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"14.357115777373721%\" y=\"71\" font-size=\"12px\" id=\"_fs_smwsbodbrxwyhhbjesvt_ind_7\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.126</text><svg x=\"14.023414445601443%\" y=\"40\" height=\"20\" width=\"0.6674026635445554%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">damned</text> </svg></svg><line x1=\"13.65321838119284%\" x2=\"14.023414445601443%\" y1=\"60\" y2=\"60\" id=\"_fb_smwsbodbrxwyhhbjesvt_ind_6\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"13.838316413397141%\" y=\"71\" font-size=\"12px\" id=\"_fs_smwsbodbrxwyhhbjesvt_ind_6\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.07</text><svg x=\"13.65321838119284%\" y=\"40\" height=\"20\" width=\"0.37019606440860287%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to so</text> </svg></svg><line x1=\"13.62936365927531%\" x2=\"13.65321838119284%\" y1=\"60\" y2=\"60\" id=\"_fb_smwsbodbrxwyhhbjesvt_ind_10\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"13.641291020234075%\" y=\"71\" font-size=\"12px\" id=\"_fs_smwsbodbrxwyhhbjesvt_ind_10\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.005</text><svg x=\"13.62936365927531%\" y=\"40\" height=\"20\" width=\"0.02385472191753024%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">being around</text> </svg></svg><line x1=\"13.629362328776512%\" x2=\"13.62936365927531%\" y1=\"60\" y2=\"60\" id=\"_fb_smwsbodbrxwyhhbjesvt_ind_16\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"13.629362994025911%\" y=\"71\" font-size=\"12px\" id=\"_fs_smwsbodbrxwyhhbjesvt_ind_16\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"13.629362328776512%\" y=\"40\" height=\"20\" width=\"1.3304987973583593e-06%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"14.023414445601443%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"14.023414445601443%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"14.023414445601443%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"14.023414445601443%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"14.023414445601443%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"14.023414445601443%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"14.023414445601443%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"14.023414445601443%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"13.65321838119284%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"13.65321838119284%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"13.65321838119284%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"13.65321838119284%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"13.65321838119284%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"13.65321838119284%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"13.65321838119284%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"13.65321838119284%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"13.62936365927531%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"13.62936365927531%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"13.62936365927531%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"13.62936365927531%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"13.62936365927531%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"13.62936365927531%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"13.62936365927531%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"13.62936365927531%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"14.690817109145998%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"13.629362328776507%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"14.690817109145998%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"14.023414445601443%\" y=\"40\" height=\"20\" width=\"0.6674026635445554%\" onmouseover=\"document.getElementById('_tp_smwsbodbrxwyhhbjesvt_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_7').style.opacity = 1;document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_smwsbodbrxwyhhbjesvt_ind_7').style.textDecoration = 'none';document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_7').style.opacity = 0;document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"14.023414445601443%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"13.65321838119284%\" y=\"40\" height=\"20\" width=\"0.37019606440860287%\" onmouseover=\"document.getElementById('_tp_smwsbodbrxwyhhbjesvt_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_6').style.opacity = 1;document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_smwsbodbrxwyhhbjesvt_ind_6').style.textDecoration = 'none';document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_6').style.opacity = 0;document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"13.65321838119284%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"13.62936365927531%\" y=\"40\" height=\"20\" width=\"0.02385472191753024%\" onmouseover=\"document.getElementById('_tp_smwsbodbrxwyhhbjesvt_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_10').style.opacity = 1;document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_smwsbodbrxwyhhbjesvt_ind_10').style.textDecoration = 'none';document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_10').style.opacity = 0;document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"13.629362328776512%\" y=\"40\" height=\"20\" width=\"1.3304987973583593e-06%\" onmouseover=\"document.getElementById('_tp_smwsbodbrxwyhhbjesvt_ind_16').style.textDecoration = 'underline';document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_16').style.opacity = 1;document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_16').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_smwsbodbrxwyhhbjesvt_ind_16').style.textDecoration = 'none';document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_16').style.opacity = 0;document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_16').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"14.690817109145998%\" width=\"36.439036368685954%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"14.690817109145998%\" x2=\"24.15514121904541%\" y1=\"60\" y2=\"60\" id=\"_fb_smwsbodbrxwyhhbjesvt_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"19.422979164095704%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_smwsbodbrxwyhhbjesvt_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.79</text><svg x=\"14.690817109145998%\" y=\"40\" height=\"20\" width=\"9.464324109899414%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feeling</text> </svg></svg><line x1=\"24.15514121904541%\" x2=\"32.76523627658335%\" y1=\"60\" y2=\"60\" id=\"_fb_smwsbodbrxwyhhbjesvt_ind_8\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"28.46018874781438%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_smwsbodbrxwyhhbjesvt_ind_8\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.629</text><svg x=\"24.15514121904541%\" y=\"40\" height=\"20\" width=\"8.61009505753794%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeful</text> </svg></svg><line x1=\"32.76523627658335%\" x2=\"40.74796915059014%\" y1=\"60\" y2=\"60\" id=\"_fb_smwsbodbrxwyhhbjesvt_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"36.756602713586744%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_smwsbodbrxwyhhbjesvt_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.51</text><svg x=\"32.76523627658335%\" y=\"40\" height=\"20\" width=\"7.9827328740067856%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeless</text> </svg></svg><line x1=\"40.74796915059014%\" x2=\"43.3115518426923%\" y1=\"60\" y2=\"60\" id=\"_fb_smwsbodbrxwyhhbjesvt_ind_15\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"42.02976049664122%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_smwsbodbrxwyhhbjesvt_ind_15\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.485</text><svg x=\"40.74796915059014%\" y=\"40\" height=\"20\" width=\"2.563582692102166%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">awake</text> </svg></svg><line x1=\"43.3115518426923%\" x2=\"44.937128342007306%\" y1=\"60\" y2=\"60\" id=\"_fb_smwsbodbrxwyhhbjesvt_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"44.124340092349804%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_smwsbodbrxwyhhbjesvt_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.307</text><svg x=\"43.3115518426923%\" y=\"40\" height=\"20\" width=\"1.6255764993150024%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><line x1=\"44.937128342007306%\" x2=\"46.54727374396442%\" y1=\"60\" y2=\"60\" id=\"_fb_smwsbodbrxwyhhbjesvt_ind_11\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"45.74220104298586%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_smwsbodbrxwyhhbjesvt_ind_11\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.305</text><svg x=\"44.937128342007306%\" y=\"40\" height=\"20\" width=\"1.6101454019571122%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">someone who</text> </svg></svg><line x1=\"46.54727374396442%\" x2=\"47.97463983467778%\" y1=\"60\" y2=\"60\" id=\"_fb_smwsbodbrxwyhhbjesvt_ind_12\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"47.2609567893211%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_smwsbodbrxwyhhbjesvt_ind_12\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.27</text><svg x=\"46.54727374396442%\" y=\"40\" height=\"20\" width=\"1.4273660907133632%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">cares</text> </svg></svg><line x1=\"47.97463983467778%\" x2=\"48.969718048746344%\" y1=\"60\" y2=\"60\" id=\"_fb_smwsbodbrxwyhhbjesvt_ind_9\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"48.47217894171206%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_smwsbodbrxwyhhbjesvt_ind_9\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.188</text><svg x=\"47.97463983467778%\" y=\"40\" height=\"20\" width=\"0.9950782140685632%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">just from</text> </svg></svg><line x1=\"48.969718048746344%\" x2=\"49.615005947513254%\" y1=\"60\" y2=\"60\" id=\"_fb_smwsbodbrxwyhhbjesvt_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"49.2923619981298%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_smwsbodbrxwyhhbjesvt_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.122</text><svg x=\"48.969718048746344%\" y=\"40\" height=\"20\" width=\"0.6452878987669095%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"49.615005947513254%\" x2=\"50.23487402247985%\" y1=\"60\" y2=\"60\" id=\"_fb_smwsbodbrxwyhhbjesvt_ind_13\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"49.924939984996556%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_smwsbodbrxwyhhbjesvt_ind_13\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.117</text><svg x=\"49.615005947513254%\" y=\"40\" height=\"20\" width=\"0.6198680749665968%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">and</text> </svg></svg><line x1=\"50.23487402247985%\" x2=\"50.64792488427341%\" y1=\"60\" y2=\"60\" id=\"_fb_smwsbodbrxwyhhbjesvt_ind_14\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"50.44139945337663%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_smwsbodbrxwyhhbjesvt_ind_14\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.078</text><svg x=\"50.23487402247985%\" y=\"40\" height=\"20\" width=\"0.41305086179355754%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">is</text> </svg></svg><line x1=\"50.64792488427341%\" x2=\"50.93315171508539%\" y1=\"60\" y2=\"60\" id=\"_fb_smwsbodbrxwyhhbjesvt_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"50.7905382996794%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_smwsbodbrxwyhhbjesvt_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.054</text><svg x=\"50.64792488427341%\" y=\"40\" height=\"20\" width=\"0.28522683081197897%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">can go</text> </svg></svg><line x1=\"50.93315171508539%\" x2=\"51.12985347783194%\" y1=\"60\" y2=\"60\" id=\"_fb_smwsbodbrxwyhhbjesvt_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"51.031502596458665%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_smwsbodbrxwyhhbjesvt_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.037</text><svg x=\"50.93315171508539%\" y=\"40\" height=\"20\" width=\"0.1967017627465495%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"24.15514121904541%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"24.15514121904541%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"24.15514121904541%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"24.15514121904541%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"24.15514121904541%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"24.15514121904541%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"24.15514121904541%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"24.15514121904541%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"32.76523627658335%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"32.76523627658335%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"32.76523627658335%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"32.76523627658335%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"32.76523627658335%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"32.76523627658335%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"32.76523627658335%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"32.76523627658335%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"40.74796915059014%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"40.74796915059014%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"40.74796915059014%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"40.74796915059014%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"40.74796915059014%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"40.74796915059014%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"40.74796915059014%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"40.74796915059014%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"43.3115518426923%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"43.3115518426923%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"43.3115518426923%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"43.3115518426923%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"43.3115518426923%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"43.3115518426923%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"43.3115518426923%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"43.3115518426923%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"44.937128342007306%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"44.937128342007306%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"44.937128342007306%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"44.937128342007306%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"44.937128342007306%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"44.937128342007306%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"44.937128342007306%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"44.937128342007306%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"46.54727374396442%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"46.54727374396442%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"46.54727374396442%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"46.54727374396442%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"46.54727374396442%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"46.54727374396442%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"46.54727374396442%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"46.54727374396442%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"47.97463983467778%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"47.97463983467778%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"47.97463983467778%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"47.97463983467778%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"47.97463983467778%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"47.97463983467778%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"47.97463983467778%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"47.97463983467778%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"48.969718048746344%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"48.969718048746344%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"48.969718048746344%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"48.969718048746344%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"48.969718048746344%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"48.969718048746344%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"48.969718048746344%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"48.969718048746344%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"49.615005947513254%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"49.615005947513254%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"49.615005947513254%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"49.615005947513254%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"49.615005947513254%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"49.615005947513254%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"49.615005947513254%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"49.615005947513254%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"50.23487402247985%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"50.23487402247985%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"50.23487402247985%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"50.23487402247985%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"50.23487402247985%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"50.23487402247985%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"50.23487402247985%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"50.23487402247985%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"50.64792488427341%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"50.64792488427341%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"50.64792488427341%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"50.64792488427341%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"50.64792488427341%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"50.64792488427341%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"50.64792488427341%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"50.64792488427341%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"50.93315171508539%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"50.93315171508539%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"50.93315171508539%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"50.93315171508539%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"50.93315171508539%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"50.93315171508539%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"50.93315171508539%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"50.93315171508539%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"14.690817109145998%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"51.12985347783195%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"24.15514121904541%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"14.690817109145998%\" y=\"40\" height=\"20\" width=\"9.464324109899414%\" onmouseover=\"document.getElementById('_tp_smwsbodbrxwyhhbjesvt_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_3').style.opacity = 1;document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_smwsbodbrxwyhhbjesvt_ind_3').style.textDecoration = 'none';document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_3').style.opacity = 0;document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"32.76523627658335%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"24.15514121904541%\" y=\"40\" height=\"20\" width=\"8.61009505753794%\" onmouseover=\"document.getElementById('_tp_smwsbodbrxwyhhbjesvt_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_8').style.opacity = 1;document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_smwsbodbrxwyhhbjesvt_ind_8').style.textDecoration = 'none';document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_8').style.opacity = 0;document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"40.74796915059014%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"32.76523627658335%\" y=\"40\" height=\"20\" width=\"7.9827328740067856%\" onmouseover=\"document.getElementById('_tp_smwsbodbrxwyhhbjesvt_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_5').style.opacity = 1;document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_smwsbodbrxwyhhbjesvt_ind_5').style.textDecoration = 'none';document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_5').style.opacity = 0;document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"43.3115518426923%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"40.74796915059014%\" y=\"40\" height=\"20\" width=\"2.563582692102166%\" onmouseover=\"document.getElementById('_tp_smwsbodbrxwyhhbjesvt_ind_15').style.textDecoration = 'underline';document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_15').style.opacity = 1;document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_15').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_smwsbodbrxwyhhbjesvt_ind_15').style.textDecoration = 'none';document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_15').style.opacity = 0;document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_15').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"44.937128342007306%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"43.3115518426923%\" y=\"40\" height=\"20\" width=\"1.6255764993150024%\" onmouseover=\"document.getElementById('_tp_smwsbodbrxwyhhbjesvt_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_4').style.opacity = 1;document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_smwsbodbrxwyhhbjesvt_ind_4').style.textDecoration = 'none';document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_4').style.opacity = 0;document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"46.54727374396442%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"44.937128342007306%\" y=\"40\" height=\"20\" width=\"1.6101454019571122%\" onmouseover=\"document.getElementById('_tp_smwsbodbrxwyhhbjesvt_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_11').style.opacity = 1;document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_smwsbodbrxwyhhbjesvt_ind_11').style.textDecoration = 'none';document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_11').style.opacity = 0;document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"47.97463983467778%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"46.54727374396442%\" y=\"40\" height=\"20\" width=\"1.4273660907133632%\" onmouseover=\"document.getElementById('_tp_smwsbodbrxwyhhbjesvt_ind_12').style.textDecoration = 'underline';document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_12').style.opacity = 1;document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_12').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_smwsbodbrxwyhhbjesvt_ind_12').style.textDecoration = 'none';document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_12').style.opacity = 0;document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_12').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"48.969718048746344%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"47.97463983467778%\" y=\"40\" height=\"20\" width=\"0.9950782140685632%\" onmouseover=\"document.getElementById('_tp_smwsbodbrxwyhhbjesvt_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_9').style.opacity = 1;document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_smwsbodbrxwyhhbjesvt_ind_9').style.textDecoration = 'none';document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_9').style.opacity = 0;document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"49.615005947513254%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"48.969718048746344%\" y=\"40\" height=\"20\" width=\"0.6452878987669095%\" onmouseover=\"document.getElementById('_tp_smwsbodbrxwyhhbjesvt_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_0').style.opacity = 1;document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_smwsbodbrxwyhhbjesvt_ind_0').style.textDecoration = 'none';document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_0').style.opacity = 0;document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"50.23487402247985%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"49.615005947513254%\" y=\"40\" height=\"20\" width=\"0.6198680749665968%\" onmouseover=\"document.getElementById('_tp_smwsbodbrxwyhhbjesvt_ind_13').style.textDecoration = 'underline';document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_13').style.opacity = 1;document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_13').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_smwsbodbrxwyhhbjesvt_ind_13').style.textDecoration = 'none';document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_13').style.opacity = 0;document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_13').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"50.64792488427341%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"50.23487402247985%\" y=\"40\" height=\"20\" width=\"0.41305086179355754%\" onmouseover=\"document.getElementById('_tp_smwsbodbrxwyhhbjesvt_ind_14').style.textDecoration = 'underline';document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_14').style.opacity = 1;document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_14').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_smwsbodbrxwyhhbjesvt_ind_14').style.textDecoration = 'none';document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_14').style.opacity = 0;document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_14').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"50.93315171508539%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"50.64792488427341%\" y=\"40\" height=\"20\" width=\"0.28522683081197897%\" onmouseover=\"document.getElementById('_tp_smwsbodbrxwyhhbjesvt_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_1').style.opacity = 1;document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_smwsbodbrxwyhhbjesvt_ind_1').style.textDecoration = 'none';document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_1').style.opacity = 0;document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"50.93315171508539%\" y=\"40\" height=\"20\" width=\"0.1967017627465495%\" onmouseover=\"document.getElementById('_tp_smwsbodbrxwyhhbjesvt_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_2').style.opacity = 1;document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_smwsbodbrxwyhhbjesvt_ind_2').style.textDecoration = 'none';document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_2').style.opacity = 0;document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.122 / 2</div\n",
|
|
" ><div id='_tp_smwsbodbrxwyhhbjesvt_ind_0'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_0').style.opacity = 1; document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_0').style.opacity = 0; document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_0').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.054 / 2</div\n",
|
|
" ><div id='_tp_smwsbodbrxwyhhbjesvt_ind_1'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_1').style.opacity = 1; document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_1').style.opacity = 0; document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_1').style.opacity = 0;\"\n",
|
|
" >can go </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.037</div\n",
|
|
" ><div id='_tp_smwsbodbrxwyhhbjesvt_ind_2'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_2').style.opacity = 1; document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_2').style.opacity = 0; document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_2').style.opacity = 0;\"\n",
|
|
" >from </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.79</div\n",
|
|
" ><div id='_tp_smwsbodbrxwyhhbjesvt_ind_3'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.25902158843335304); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_3').style.opacity = 1; document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_3').style.opacity = 0; document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_3').style.opacity = 0;\"\n",
|
|
" >feeling </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.307</div\n",
|
|
" ><div id='_tp_smwsbodbrxwyhhbjesvt_ind_4'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03830461477520309); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_4').style.opacity = 1; document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_4').style.opacity = 0; document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_4').style.opacity = 0;\"\n",
|
|
" >so </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.51</div\n",
|
|
" ><div id='_tp_smwsbodbrxwyhhbjesvt_ind_5'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.21960784313725487); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_5').style.opacity = 1; document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_5').style.opacity = 0; document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_5').style.opacity = 0;\"\n",
|
|
" >hopeless </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.07 / 2</div\n",
|
|
" ><div id='_tp_smwsbodbrxwyhhbjesvt_ind_6'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_6').style.opacity = 1; document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_6').style.opacity = 0; document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_6').style.opacity = 0;\"\n",
|
|
" >to so </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.126</div\n",
|
|
" ><div id='_tp_smwsbodbrxwyhhbjesvt_ind_7'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.014656367597544035); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_7').style.opacity = 1; document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_7').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_7').style.opacity = 0; document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_7').style.opacity = 0;\"\n",
|
|
" >damned </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.629</div\n",
|
|
" ><div id='_tp_smwsbodbrxwyhhbjesvt_ind_8'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.23537334125569417); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_8').style.opacity = 1; document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_8').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_8').style.opacity = 0; document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_8').style.opacity = 0;\"\n",
|
|
" >hopeful </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.188 / 2</div\n",
|
|
" ><div id='_tp_smwsbodbrxwyhhbjesvt_ind_9'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.022539116656763607); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_9').style.opacity = 1; document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_9').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_9').style.opacity = 0; document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_9').style.opacity = 0;\"\n",
|
|
" >just from </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.005 / 2</div\n",
|
|
" ><div id='_tp_smwsbodbrxwyhhbjesvt_ind_10'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_10').style.opacity = 1; document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_10').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_10').style.opacity = 0; document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_10').style.opacity = 0;\"\n",
|
|
" >being around </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.305 / 2</div\n",
|
|
" ><div id='_tp_smwsbodbrxwyhhbjesvt_ind_11'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03830461477520309); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_11').style.opacity = 1; document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_11').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_11').style.opacity = 0; document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_11').style.opacity = 0;\"\n",
|
|
" >someone who </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.27</div\n",
|
|
" ><div id='_tp_smwsbodbrxwyhhbjesvt_ind_12'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03830461477520309); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_12').style.opacity = 1; document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_12').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_12').style.opacity = 0; document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_12').style.opacity = 0;\"\n",
|
|
" >cares </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.117</div\n",
|
|
" ><div id='_tp_smwsbodbrxwyhhbjesvt_ind_13'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_13').style.opacity = 1; document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_13').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_13').style.opacity = 0; document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_13').style.opacity = 0;\"\n",
|
|
" >and </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.078</div\n",
|
|
" ><div id='_tp_smwsbodbrxwyhhbjesvt_ind_14'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_14').style.opacity = 1; document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_14').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_14').style.opacity = 0; document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_14').style.opacity = 0;\"\n",
|
|
" >is </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.485</div\n",
|
|
" ><div id='_tp_smwsbodbrxwyhhbjesvt_ind_15'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.06195286195286191); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_15').style.opacity = 1; document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_15').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_15').style.opacity = 0; document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_15').style.opacity = 0;\"\n",
|
|
" >awake</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_smwsbodbrxwyhhbjesvt_ind_16'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_16').style.opacity = 1; document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_16').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_smwsbodbrxwyhhbjesvt_ind_16').style.opacity = 0; document.getElementById('_fs_smwsbodbrxwyhhbjesvt_ind_16').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_bgksouvlavqavwefwxrm_output_3_zoom' style='display: none;'><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"53.901106719713276%\" y1=\"33\" x2=\"53.901106719713276%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"53.901106719713276%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"42.152214763882014%\" y1=\"33\" x2=\"42.152214763882014%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"42.152214763882014%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-5</text><line x1=\"30.403322808050753%\" y1=\"33\" x2=\"30.403322808050753%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"30.403322808050753%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6</text><line x1=\"18.65443085221949%\" y1=\"33\" x2=\"18.65443085221949%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"18.65443085221949%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7</text><line x1=\"65.64999867554455%\" y1=\"33\" x2=\"65.64999867554455%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"65.64999867554455%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-3</text><line x1=\"77.3988906313758%\" y1=\"33\" x2=\"77.3988906313758%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"77.3988906313758%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2</text><line x1=\"89.14778258720708%\" y1=\"33\" x2=\"89.14778258720708%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"89.14778258720708%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1</text><line x1=\"89.30790905429258%\" y1=\"33\" x2=\"89.30790905429258%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"89.30790905429258%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.986371</text><text x=\"89.30790905429258%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.986371</text><text x=\"89.30790905429258%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"10.692090828218486%\" y1=\"33\" x2=\"10.692090828218486%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"10.692090828218486%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7.67771</text><text x=\"10.692090828218486%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7.67771</text><text x=\"10.692090828218486%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">anger</tspan>(inputs)</text><rect x=\"8.33333332354259%\" width=\"2.3587575046758937%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"9.208993224448303%\" x2=\"10.692090828218486%\" y1=\"60\" y2=\"60\" id=\"_fb_uziuvljnpmhrfpctubpb_ind_7\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"9.950542026333395%\" y=\"71\" font-size=\"12px\" id=\"_fs_uziuvljnpmhrfpctubpb_ind_7\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.126</text><svg x=\"9.208993224448303%\" y=\"40\" height=\"20\" width=\"1.483097603770183%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">damned</text> </svg></svg><line x1=\"8.386346078969986%\" x2=\"9.208993224448303%\" y1=\"60\" y2=\"60\" id=\"_fb_uziuvljnpmhrfpctubpb_ind_6\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.797669651709144%\" y=\"71\" font-size=\"12px\" id=\"_fs_uziuvljnpmhrfpctubpb_ind_6\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.07</text><svg x=\"8.386346078969986%\" y=\"40\" height=\"20\" width=\"0.8226471454783173%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to so</text> </svg></svg><line x1=\"8.333336280167869%\" x2=\"8.386346078969986%\" y1=\"60\" y2=\"60\" id=\"_fb_uziuvljnpmhrfpctubpb_ind_10\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.359841179568928%\" y=\"71\" font-size=\"12px\" id=\"_fs_uziuvljnpmhrfpctubpb_ind_10\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.005</text><svg x=\"8.333336280167869%\" y=\"40\" height=\"20\" width=\"0.0530097988021172%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">being around</text> </svg></svg><line x1=\"8.333333323542602%\" x2=\"8.333336280167869%\" y1=\"60\" y2=\"60\" id=\"_fb_uziuvljnpmhrfpctubpb_ind_16\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.333334801855235%\" y=\"71\" font-size=\"12px\" id=\"_fs_uziuvljnpmhrfpctubpb_ind_16\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"8.333333323542602%\" y=\"40\" height=\"20\" width=\"2.9566252663926207e-06%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"9.208993224448303%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"9.208993224448303%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"9.208993224448303%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"9.208993224448303%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"9.208993224448303%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"9.208993224448303%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"9.208993224448303%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"9.208993224448303%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.386346078969986%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.386346078969986%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.386346078969986%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.386346078969986%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.386346078969986%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.386346078969986%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.386346078969986%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.386346078969986%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.333336280167869%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.333336280167869%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.333336280167869%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.333336280167869%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.333336280167869%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.333336280167869%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.333336280167869%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.333336280167869%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"10.692090828218486%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.33333332354259%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"10.692090828218486%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"9.208993224448303%\" y=\"40\" height=\"20\" width=\"1.483097603770183%\" onmouseover=\"document.getElementById('_tp_uziuvljnpmhrfpctubpb_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_7').style.opacity = 1;document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uziuvljnpmhrfpctubpb_ind_7').style.textDecoration = 'none';document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_7').style.opacity = 0;document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"9.208993224448303%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.386346078969986%\" y=\"40\" height=\"20\" width=\"0.8226471454783173%\" onmouseover=\"document.getElementById('_tp_uziuvljnpmhrfpctubpb_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_6').style.opacity = 1;document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uziuvljnpmhrfpctubpb_ind_6').style.textDecoration = 'none';document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_6').style.opacity = 0;document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"8.386346078969986%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.333336280167869%\" y=\"40\" height=\"20\" width=\"0.0530097988021172%\" onmouseover=\"document.getElementById('_tp_uziuvljnpmhrfpctubpb_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_10').style.opacity = 1;document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uziuvljnpmhrfpctubpb_ind_10').style.textDecoration = 'none';document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_10').style.opacity = 0;document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"8.333333323542602%\" y=\"40\" height=\"20\" width=\"2.9566252663926207e-06%\" onmouseover=\"document.getElementById('_tp_uziuvljnpmhrfpctubpb_ind_16').style.textDecoration = 'underline';document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_16').style.opacity = 1;document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_16').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uziuvljnpmhrfpctubpb_ind_16').style.textDecoration = 'none';document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_16').style.opacity = 0;document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_16').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"10.692090828218486%\" width=\"80.97457573075%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"10.692090828218486%\" x2=\"31.72364670207239%\" y1=\"60\" y2=\"60\" id=\"_fb_uziuvljnpmhrfpctubpb_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"21.207868765145438%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_uziuvljnpmhrfpctubpb_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.79</text><svg x=\"10.692090828218486%\" y=\"40\" height=\"20\" width=\"21.031555873853904%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feeling</text> </svg></svg><line x1=\"31.72364670207239%\" x2=\"50.85694065725237%\" y1=\"60\" y2=\"60\" id=\"_fb_uziuvljnpmhrfpctubpb_ind_8\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"41.29029367966238%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_uziuvljnpmhrfpctubpb_ind_8\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.629</text><svg x=\"31.72364670207239%\" y=\"40\" height=\"20\" width=\"19.133293955179983%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeful</text> </svg></svg><line x1=\"50.85694065725237%\" x2=\"68.59611468766377%\" y1=\"60\" y2=\"60\" id=\"_fb_uziuvljnpmhrfpctubpb_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"59.726527672458076%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_uziuvljnpmhrfpctubpb_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.51</text><svg x=\"50.85694065725237%\" y=\"40\" height=\"20\" width=\"17.739174030411398%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeless</text> </svg></svg><line x1=\"68.59611468766377%\" x2=\"74.29289049543611%\" y1=\"60\" y2=\"60\" id=\"_fb_uziuvljnpmhrfpctubpb_ind_15\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"71.44450259154993%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_uziuvljnpmhrfpctubpb_ind_15\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.485</text><svg x=\"68.59611468766377%\" y=\"40\" height=\"20\" width=\"5.69677580777234%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">awake</text> </svg></svg><line x1=\"74.29289049543611%\" x2=\"77.9052353998976%\" y1=\"60\" y2=\"60\" id=\"_fb_uziuvljnpmhrfpctubpb_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"76.09906294766685%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_uziuvljnpmhrfpctubpb_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.307</text><svg x=\"74.29289049543611%\" y=\"40\" height=\"20\" width=\"3.6123449044614944%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><line x1=\"77.9052353998976%\" x2=\"81.48328942605563%\" y1=\"60\" y2=\"60\" id=\"_fb_uziuvljnpmhrfpctubpb_ind_11\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"79.69426241297663%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_uziuvljnpmhrfpctubpb_ind_11\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.305</text><svg x=\"77.9052353998976%\" y=\"40\" height=\"20\" width=\"3.5780540261580285%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">someone who</text> </svg></svg><line x1=\"81.48328942605563%\" x2=\"84.6551725252283%\" y1=\"60\" y2=\"60\" id=\"_fb_uziuvljnpmhrfpctubpb_ind_12\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"83.06923097564197%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_uziuvljnpmhrfpctubpb_ind_12\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.27</text><svg x=\"81.48328942605563%\" y=\"40\" height=\"20\" width=\"3.1718830991726605%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">cares</text> </svg></svg><line x1=\"84.6551725252283%\" x2=\"86.86642848128203%\" y1=\"60\" y2=\"60\" id=\"_fb_uziuvljnpmhrfpctubpb_ind_9\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"85.76080050325515%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_uziuvljnpmhrfpctubpb_ind_9\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.188</text><svg x=\"84.6551725252283%\" y=\"40\" height=\"20\" width=\"2.2112559560537335%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">just from</text> </svg></svg><line x1=\"86.86642848128203%\" x2=\"88.3003828070265%\" y1=\"60\" y2=\"60\" id=\"_fb_uziuvljnpmhrfpctubpb_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"87.58340564415425%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_uziuvljnpmhrfpctubpb_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.122</text><svg x=\"86.86642848128203%\" y=\"40\" height=\"20\" width=\"1.433954325744466%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"88.3003828070265%\" x2=\"89.67784937534088%\" y1=\"60\" y2=\"60\" id=\"_fb_uziuvljnpmhrfpctubpb_ind_13\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"88.98911609118369%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_uziuvljnpmhrfpctubpb_ind_13\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.117</text><svg x=\"88.3003828070265%\" y=\"40\" height=\"20\" width=\"1.3774665683143894%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">and</text> </svg></svg><line x1=\"89.67784937534088%\" x2=\"90.5957281565069%\" y1=\"60\" y2=\"60\" id=\"_fb_uziuvljnpmhrfpctubpb_ind_14\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"90.13678876592388%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_uziuvljnpmhrfpctubpb_ind_14\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.078</text><svg x=\"89.67784937534088%\" y=\"40\" height=\"20\" width=\"0.9178787811660101%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">is</text> </svg></svg><line x1=\"90.5957281565069%\" x2=\"91.22955725611158%\" y1=\"60\" y2=\"60\" id=\"_fb_uziuvljnpmhrfpctubpb_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"90.91264270630924%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_uziuvljnpmhrfpctubpb_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.054</text><svg x=\"90.5957281565069%\" y=\"40\" height=\"20\" width=\"0.6338290996046823%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">can go</text> </svg></svg><line x1=\"91.22955725611158%\" x2=\"91.66666655896847%\" y1=\"60\" y2=\"60\" id=\"_fb_uziuvljnpmhrfpctubpb_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.44811190754002%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_uziuvljnpmhrfpctubpb_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.037</text><svg x=\"91.22955725611158%\" y=\"40\" height=\"20\" width=\"0.4371093028568964%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"31.72364670207239%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"31.72364670207239%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"31.72364670207239%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"31.72364670207239%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"31.72364670207239%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"31.72364670207239%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"31.72364670207239%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"31.72364670207239%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"50.85694065725237%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"50.85694065725237%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"50.85694065725237%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"50.85694065725237%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"50.85694065725237%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"50.85694065725237%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"50.85694065725237%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"50.85694065725237%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"68.59611468766377%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"68.59611468766377%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"68.59611468766377%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"68.59611468766377%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"68.59611468766377%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"68.59611468766377%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"68.59611468766377%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"68.59611468766377%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"74.29289049543611%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"74.29289049543611%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"74.29289049543611%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"74.29289049543611%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"74.29289049543611%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"74.29289049543611%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"74.29289049543611%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"74.29289049543611%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"77.9052353998976%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"77.9052353998976%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"77.9052353998976%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"77.9052353998976%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"77.9052353998976%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"77.9052353998976%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"77.9052353998976%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"77.9052353998976%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"81.48328942605563%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"81.48328942605563%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"81.48328942605563%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"81.48328942605563%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"81.48328942605563%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"81.48328942605563%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"81.48328942605563%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"81.48328942605563%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"84.6551725252283%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"84.6551725252283%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"84.6551725252283%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"84.6551725252283%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"84.6551725252283%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"84.6551725252283%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"84.6551725252283%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"84.6551725252283%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"86.86642848128203%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"86.86642848128203%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"86.86642848128203%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"86.86642848128203%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"86.86642848128203%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"86.86642848128203%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"86.86642848128203%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"86.86642848128203%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"88.3003828070265%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"88.3003828070265%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"88.3003828070265%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"88.3003828070265%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"88.3003828070265%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"88.3003828070265%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"88.3003828070265%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"88.3003828070265%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"89.67784937534088%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"89.67784937534088%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"89.67784937534088%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"89.67784937534088%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"89.67784937534088%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"89.67784937534088%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"89.67784937534088%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"89.67784937534088%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"90.5957281565069%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.5957281565069%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.5957281565069%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.5957281565069%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.5957281565069%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.5957281565069%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.5957281565069%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.5957281565069%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.22955725611158%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.22955725611158%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.22955725611158%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.22955725611158%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.22955725611158%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.22955725611158%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.22955725611158%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.22955725611158%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"10.692090828218486%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66666655896849%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"31.72364670207239%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"10.692090828218486%\" y=\"40\" height=\"20\" width=\"21.031555873853904%\" onmouseover=\"document.getElementById('_tp_uziuvljnpmhrfpctubpb_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_3').style.opacity = 1;document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uziuvljnpmhrfpctubpb_ind_3').style.textDecoration = 'none';document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_3').style.opacity = 0;document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"50.85694065725237%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"31.72364670207239%\" y=\"40\" height=\"20\" width=\"19.133293955179983%\" onmouseover=\"document.getElementById('_tp_uziuvljnpmhrfpctubpb_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_8').style.opacity = 1;document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uziuvljnpmhrfpctubpb_ind_8').style.textDecoration = 'none';document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_8').style.opacity = 0;document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"68.59611468766377%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"50.85694065725237%\" y=\"40\" height=\"20\" width=\"17.739174030411398%\" onmouseover=\"document.getElementById('_tp_uziuvljnpmhrfpctubpb_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_5').style.opacity = 1;document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uziuvljnpmhrfpctubpb_ind_5').style.textDecoration = 'none';document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_5').style.opacity = 0;document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"74.29289049543611%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"68.59611468766377%\" y=\"40\" height=\"20\" width=\"5.69677580777234%\" onmouseover=\"document.getElementById('_tp_uziuvljnpmhrfpctubpb_ind_15').style.textDecoration = 'underline';document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_15').style.opacity = 1;document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_15').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uziuvljnpmhrfpctubpb_ind_15').style.textDecoration = 'none';document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_15').style.opacity = 0;document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_15').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"77.9052353998976%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"74.29289049543611%\" y=\"40\" height=\"20\" width=\"3.6123449044614944%\" onmouseover=\"document.getElementById('_tp_uziuvljnpmhrfpctubpb_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_4').style.opacity = 1;document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uziuvljnpmhrfpctubpb_ind_4').style.textDecoration = 'none';document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_4').style.opacity = 0;document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"81.48328942605563%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"77.9052353998976%\" y=\"40\" height=\"20\" width=\"3.5780540261580285%\" onmouseover=\"document.getElementById('_tp_uziuvljnpmhrfpctubpb_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_11').style.opacity = 1;document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uziuvljnpmhrfpctubpb_ind_11').style.textDecoration = 'none';document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_11').style.opacity = 0;document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"84.6551725252283%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"81.48328942605563%\" y=\"40\" height=\"20\" width=\"3.1718830991726605%\" onmouseover=\"document.getElementById('_tp_uziuvljnpmhrfpctubpb_ind_12').style.textDecoration = 'underline';document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_12').style.opacity = 1;document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_12').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uziuvljnpmhrfpctubpb_ind_12').style.textDecoration = 'none';document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_12').style.opacity = 0;document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_12').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"86.86642848128203%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"84.6551725252283%\" y=\"40\" height=\"20\" width=\"2.2112559560537335%\" onmouseover=\"document.getElementById('_tp_uziuvljnpmhrfpctubpb_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_9').style.opacity = 1;document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uziuvljnpmhrfpctubpb_ind_9').style.textDecoration = 'none';document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_9').style.opacity = 0;document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"88.3003828070265%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"86.86642848128203%\" y=\"40\" height=\"20\" width=\"1.433954325744466%\" onmouseover=\"document.getElementById('_tp_uziuvljnpmhrfpctubpb_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_0').style.opacity = 1;document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uziuvljnpmhrfpctubpb_ind_0').style.textDecoration = 'none';document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_0').style.opacity = 0;document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"89.67784937534088%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"88.3003828070265%\" y=\"40\" height=\"20\" width=\"1.3774665683143894%\" onmouseover=\"document.getElementById('_tp_uziuvljnpmhrfpctubpb_ind_13').style.textDecoration = 'underline';document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_13').style.opacity = 1;document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_13').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uziuvljnpmhrfpctubpb_ind_13').style.textDecoration = 'none';document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_13').style.opacity = 0;document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_13').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"90.5957281565069%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"89.67784937534088%\" y=\"40\" height=\"20\" width=\"0.9178787811660101%\" onmouseover=\"document.getElementById('_tp_uziuvljnpmhrfpctubpb_ind_14').style.textDecoration = 'underline';document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_14').style.opacity = 1;document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_14').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uziuvljnpmhrfpctubpb_ind_14').style.textDecoration = 'none';document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_14').style.opacity = 0;document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_14').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.22955725611158%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"90.5957281565069%\" y=\"40\" height=\"20\" width=\"0.6338290996046823%\" onmouseover=\"document.getElementById('_tp_uziuvljnpmhrfpctubpb_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_1').style.opacity = 1;document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uziuvljnpmhrfpctubpb_ind_1').style.textDecoration = 'none';document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_1').style.opacity = 0;document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"91.22955725611158%\" y=\"40\" height=\"20\" width=\"0.4371093028568964%\" onmouseover=\"document.getElementById('_tp_uziuvljnpmhrfpctubpb_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_2').style.opacity = 1;document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_uziuvljnpmhrfpctubpb_ind_2').style.textDecoration = 'none';document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_2').style.opacity = 0;document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.122 / 2</div\n",
|
|
" ><div id='_tp_uziuvljnpmhrfpctubpb_ind_0'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.06195286195286191); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_0').style.opacity = 1; document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_0').style.opacity = 0; document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_0').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.054 / 2</div\n",
|
|
" ><div id='_tp_uziuvljnpmhrfpctubpb_ind_1'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.022539116656763607); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_1').style.opacity = 1; document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_1').style.opacity = 0; document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_1').style.opacity = 0;\"\n",
|
|
" >can go </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.037</div\n",
|
|
" ><div id='_tp_uziuvljnpmhrfpctubpb_ind_2'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_2').style.opacity = 1; document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_2').style.opacity = 0; document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_2').style.opacity = 0;\"\n",
|
|
" >from </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.79</div\n",
|
|
" ><div id='_tp_uziuvljnpmhrfpctubpb_ind_3'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 1.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_3').style.opacity = 1; document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_3').style.opacity = 0; document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_3').style.opacity = 0;\"\n",
|
|
" >feeling </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.307</div\n",
|
|
" ><div id='_tp_uziuvljnpmhrfpctubpb_ind_4'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.16442859972271748); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_4').style.opacity = 1; document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_4').style.opacity = 0; document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_4').style.opacity = 0;\"\n",
|
|
" >so </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.51</div\n",
|
|
" ><div id='_tp_uziuvljnpmhrfpctubpb_ind_5'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.8423450188156071); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_5').style.opacity = 1; document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_5').style.opacity = 0; document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_5').style.opacity = 0;\"\n",
|
|
" >hopeless </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.07 / 2</div\n",
|
|
" ><div id='_tp_uziuvljnpmhrfpctubpb_ind_6'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.03830461477520289); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_6').style.opacity = 1; document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_6').style.opacity = 0; document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_6').style.opacity = 0;\"\n",
|
|
" >to so </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.126</div\n",
|
|
" ><div id='_tp_uziuvljnpmhrfpctubpb_ind_7'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.06983561101208159); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_7').style.opacity = 1; document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_7').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_7').style.opacity = 0; document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_7').style.opacity = 0;\"\n",
|
|
" >damned </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.629</div\n",
|
|
" ><div id='_tp_uziuvljnpmhrfpctubpb_ind_8'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.9132897603485839); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_8').style.opacity = 1; document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_8').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_8').style.opacity = 0; document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_8').style.opacity = 0;\"\n",
|
|
" >hopeful </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.188 / 2</div\n",
|
|
" ><div id='_tp_uziuvljnpmhrfpctubpb_ind_9'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.10136660724896014); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_9').style.opacity = 1; document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_9').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_9').style.opacity = 0; document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_9').style.opacity = 0;\"\n",
|
|
" >just from </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.005 / 2</div\n",
|
|
" ><div id='_tp_uziuvljnpmhrfpctubpb_ind_10'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_10').style.opacity = 1; document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_10').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_10').style.opacity = 0; document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_10').style.opacity = 0;\"\n",
|
|
" >being around </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.305 / 2</div\n",
|
|
" ><div id='_tp_uziuvljnpmhrfpctubpb_ind_11'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.16442859972271748); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_11').style.opacity = 1; document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_11').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_11').style.opacity = 0; document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_11').style.opacity = 0;\"\n",
|
|
" >someone who </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.27</div\n",
|
|
" ><div id='_tp_uziuvljnpmhrfpctubpb_ind_12'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.14866310160427798); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_12').style.opacity = 1; document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_12').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_12').style.opacity = 0; document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_12').style.opacity = 0;\"\n",
|
|
" >cares </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.117</div\n",
|
|
" ><div id='_tp_uziuvljnpmhrfpctubpb_ind_13'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.06195286195286191); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_13').style.opacity = 1; document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_13').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_13').style.opacity = 0; document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_13').style.opacity = 0;\"\n",
|
|
" >and </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.078</div\n",
|
|
" ><div id='_tp_uziuvljnpmhrfpctubpb_ind_14'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03830461477520309); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_14').style.opacity = 1; document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_14').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_14').style.opacity = 0; document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_14').style.opacity = 0;\"\n",
|
|
" >is </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.485</div\n",
|
|
" ><div id='_tp_uziuvljnpmhrfpctubpb_ind_15'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.2669043374925727); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_15').style.opacity = 1; document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_15').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_15').style.opacity = 0; document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_15').style.opacity = 0;\"\n",
|
|
" >awake</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_uziuvljnpmhrfpctubpb_ind_16'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_16').style.opacity = 1; document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_16').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_uziuvljnpmhrfpctubpb_ind_16').style.opacity = 0; document.getElementById('_fs_uziuvljnpmhrfpctubpb_ind_16').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_bgksouvlavqavwefwxrm_output_4' style='display: none';><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"49.99634084343776%\" y1=\"33\" x2=\"49.99634084343776%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"49.99634084343776%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1</text><line x1=\"34.135128947971666%\" y1=\"33\" x2=\"34.135128947971666%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"34.135128947971666%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"18.273917052505578%\" y1=\"33\" x2=\"18.273917052505578%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"18.273917052505578%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7</text><line x1=\"65.85755273890385%\" y1=\"33\" x2=\"65.85755273890385%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"65.85755273890385%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">2</text><line x1=\"81.71876463436993%\" y1=\"33\" x2=\"81.71876463436993%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"81.71876463436993%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">5</text><line x1=\"44.899116137464134%\" y1=\"33\" x2=\"44.899116137464134%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"44.899116137464134%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1.96409</text><text x=\"44.899116137464134%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1.96409</text><text x=\"44.899116137464134%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"21.416185670514913%\" y1=\"33\" x2=\"21.416185670514913%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"21.416185670514913%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.40567</text><text x=\"21.416185670514913%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.40567</text><text x=\"21.416185670514913%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">fear</tspan>(inputs)</text><rect x=\"21.416184723096173%\" width=\"9.474187388500589e-07%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"21.416184723096173%\" x2=\"21.416185670514913%\" y1=\"60\" y2=\"60\" id=\"_fb_kvrfyckicnyytypaqodb_ind_16\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"21.416185196805543%\" y=\"71\" font-size=\"12px\" id=\"_fs_kvrfyckicnyytypaqodb_ind_16\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"21.416184723096173%\" y=\"40\" height=\"20\" width=\"9.474187407931822e-07%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><rect transform=\"translate(-8,0)\" x=\"21.416185670514913%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"21.416184723096173%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><rect x=\"21.416184723096173%\" y=\"40\" height=\"20\" width=\"9.474187407931822e-07%\" onmouseover=\"document.getElementById('_tp_kvrfyckicnyytypaqodb_ind_16').style.textDecoration = 'underline';document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_16').style.opacity = 1;document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_16').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kvrfyckicnyytypaqodb_ind_16').style.textDecoration = 'none';document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_16').style.opacity = 0;document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_16').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"21.416185670514913%\" width=\"23.48293141436796%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"21.416185670514913%\" x2=\"27.191779037128796%\" y1=\"60\" y2=\"60\" id=\"_fb_kvrfyckicnyytypaqodb_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"24.303982353821855%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kvrfyckicnyytypaqodb_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.092</text><svg x=\"21.416185670514913%\" y=\"40\" height=\"20\" width=\"5.775593366613883%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feeling</text> </svg></svg><line x1=\"27.191779037128796%\" x2=\"32.630290389309444%\" y1=\"60\" y2=\"60\" id=\"_fb_kvrfyckicnyytypaqodb_ind_8\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"29.91103471321912%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kvrfyckicnyytypaqodb_ind_8\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.029</text><svg x=\"27.191779037128796%\" y=\"40\" height=\"20\" width=\"5.438511352180647%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeful</text> </svg></svg><line x1=\"32.630290389309444%\" x2=\"34.5695802416084%\" y1=\"60\" y2=\"60\" id=\"_fb_kvrfyckicnyytypaqodb_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"33.59993531545892%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kvrfyckicnyytypaqodb_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.367</text><svg x=\"32.630290389309444%\" y=\"40\" height=\"20\" width=\"1.9392898522989555%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeless</text> </svg></svg><line x1=\"34.5695802416084%\" x2=\"36.49665950502826%\" y1=\"60\" y2=\"60\" id=\"_fb_kvrfyckicnyytypaqodb_ind_12\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"35.53311987331833%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kvrfyckicnyytypaqodb_ind_12\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.364</text><svg x=\"34.5695802416084%\" y=\"40\" height=\"20\" width=\"1.9270792634198628%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">cares</text> </svg></svg><line x1=\"36.49665950502826%\" x2=\"37.876427411447274%\" y1=\"60\" y2=\"60\" id=\"_fb_kvrfyckicnyytypaqodb_ind_11\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"37.186543458237765%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kvrfyckicnyytypaqodb_ind_11\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.261</text><svg x=\"36.49665950502826%\" y=\"40\" height=\"20\" width=\"1.379767906419012%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">someone who</text> </svg></svg><line x1=\"37.876427411447274%\" x2=\"39.21926121543493%\" y1=\"60\" y2=\"60\" id=\"_fb_kvrfyckicnyytypaqodb_ind_9\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"38.547844313441104%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kvrfyckicnyytypaqodb_ind_9\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.254</text><svg x=\"37.876427411447274%\" y=\"40\" height=\"20\" width=\"1.3428338039876593%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">just from</text> </svg></svg><line x1=\"39.21926121543493%\" x2=\"40.539480122717976%\" y1=\"60\" y2=\"60\" id=\"_fb_kvrfyckicnyytypaqodb_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"39.87937066907645%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kvrfyckicnyytypaqodb_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.25</text><svg x=\"39.21926121543493%\" y=\"40\" height=\"20\" width=\"1.3202189072830421%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><line x1=\"40.539480122717976%\" x2=\"41.62055793403142%\" y1=\"60\" y2=\"60\" id=\"_fb_kvrfyckicnyytypaqodb_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"41.08001902837469%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kvrfyckicnyytypaqodb_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.204</text><svg x=\"40.539480122717976%\" y=\"40\" height=\"20\" width=\"1.0810778113134418%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"41.62055793403142%\" x2=\"42.51437257617428%\" y1=\"60\" y2=\"60\" id=\"_fb_kvrfyckicnyytypaqodb_ind_15\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"42.067465255102846%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kvrfyckicnyytypaqodb_ind_15\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.169</text><svg x=\"41.62055793403142%\" y=\"40\" height=\"20\" width=\"0.8938146421428641%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">awake</text> </svg></svg><line x1=\"42.51437257617428%\" x2=\"43.179201718642425%\" y1=\"60\" y2=\"60\" id=\"_fb_kvrfyckicnyytypaqodb_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"42.84678714740835%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kvrfyckicnyytypaqodb_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.126</text><svg x=\"42.51437257617428%\" y=\"40\" height=\"20\" width=\"0.6648291424681432%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">can go</text> </svg></svg><line x1=\"43.179201718642425%\" x2=\"43.619485458538016%\" y1=\"60\" y2=\"60\" id=\"_fb_kvrfyckicnyytypaqodb_ind_13\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"43.39934358859022%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kvrfyckicnyytypaqodb_ind_13\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.083</text><svg x=\"43.179201718642425%\" y=\"40\" height=\"20\" width=\"0.440283739895591%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">and</text> </svg></svg><line x1=\"43.619485458538016%\" x2=\"43.94425283074358%\" y1=\"60\" y2=\"60\" id=\"_fb_kvrfyckicnyytypaqodb_ind_7\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"43.781869144640794%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kvrfyckicnyytypaqodb_ind_7\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.061</text><svg x=\"43.619485458538016%\" y=\"40\" height=\"20\" width=\"0.32476737220556373%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">damned</text> </svg></svg><line x1=\"43.94425283074358%\" x2=\"44.213761247132986%\" y1=\"60\" y2=\"60\" id=\"_fb_kvrfyckicnyytypaqodb_ind_14\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"44.079007038938286%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kvrfyckicnyytypaqodb_ind_14\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.051</text><svg x=\"43.94425283074358%\" y=\"40\" height=\"20\" width=\"0.2695084163894066%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">is</text> </svg></svg><line x1=\"44.213761247132986%\" x2=\"44.47420020989847%\" y1=\"60\" y2=\"60\" id=\"_fb_kvrfyckicnyytypaqodb_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"44.34398072851573%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kvrfyckicnyytypaqodb_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.049</text><svg x=\"44.213761247132986%\" y=\"40\" height=\"20\" width=\"0.26043896276548395%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><line x1=\"44.47420020989847%\" x2=\"44.716243819208685%\" y1=\"60\" y2=\"60\" id=\"_fb_kvrfyckicnyytypaqodb_ind_6\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"44.59522201455358%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kvrfyckicnyytypaqodb_ind_6\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.046</text><svg x=\"44.47420020989847%\" y=\"40\" height=\"20\" width=\"0.2420436093102154%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to so</text> </svg></svg><line x1=\"44.716243819208685%\" x2=\"44.899117084882874%\" y1=\"60\" y2=\"60\" id=\"_fb_kvrfyckicnyytypaqodb_ind_10\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"44.80768045204578%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kvrfyckicnyytypaqodb_ind_10\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.035</text><svg x=\"44.716243819208685%\" y=\"40\" height=\"20\" width=\"0.18287326567418916%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">being around</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"27.191779037128796%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"27.191779037128796%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"27.191779037128796%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"27.191779037128796%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"27.191779037128796%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"27.191779037128796%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"27.191779037128796%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"27.191779037128796%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"32.630290389309444%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"32.630290389309444%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"32.630290389309444%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"32.630290389309444%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"32.630290389309444%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"32.630290389309444%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"32.630290389309444%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"32.630290389309444%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"34.5695802416084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"34.5695802416084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"34.5695802416084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"34.5695802416084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"34.5695802416084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"34.5695802416084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"34.5695802416084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"34.5695802416084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"36.49665950502826%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"36.49665950502826%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"36.49665950502826%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"36.49665950502826%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"36.49665950502826%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"36.49665950502826%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"36.49665950502826%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"36.49665950502826%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"37.876427411447274%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"37.876427411447274%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"37.876427411447274%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"37.876427411447274%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"37.876427411447274%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"37.876427411447274%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"37.876427411447274%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"37.876427411447274%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"39.21926121543493%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"39.21926121543493%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"39.21926121543493%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"39.21926121543493%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"39.21926121543493%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"39.21926121543493%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"39.21926121543493%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"39.21926121543493%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"40.539480122717976%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"40.539480122717976%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"40.539480122717976%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"40.539480122717976%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"40.539480122717976%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"40.539480122717976%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"40.539480122717976%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"40.539480122717976%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"41.62055793403142%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"41.62055793403142%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"41.62055793403142%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"41.62055793403142%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"41.62055793403142%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"41.62055793403142%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"41.62055793403142%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"41.62055793403142%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"42.51437257617428%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"42.51437257617428%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"42.51437257617428%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"42.51437257617428%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"42.51437257617428%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"42.51437257617428%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"42.51437257617428%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"42.51437257617428%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"43.179201718642425%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"43.179201718642425%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"43.179201718642425%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"43.179201718642425%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"43.179201718642425%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"43.179201718642425%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"43.179201718642425%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"43.179201718642425%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"43.619485458538016%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"43.619485458538016%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"43.619485458538016%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"43.619485458538016%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"43.619485458538016%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"43.619485458538016%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"43.619485458538016%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"43.619485458538016%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"43.94425283074358%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"43.94425283074358%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"43.94425283074358%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"43.94425283074358%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"43.94425283074358%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"43.94425283074358%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"43.94425283074358%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"43.94425283074358%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"44.213761247132986%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"44.213761247132986%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"44.213761247132986%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"44.213761247132986%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"44.213761247132986%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"44.213761247132986%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"44.213761247132986%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"44.213761247132986%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"44.47420020989847%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"44.47420020989847%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"44.47420020989847%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"44.47420020989847%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"44.47420020989847%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"44.47420020989847%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"44.47420020989847%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"44.47420020989847%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"44.716243819208685%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"44.716243819208685%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"44.716243819208685%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"44.716243819208685%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"44.716243819208685%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"44.716243819208685%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"44.716243819208685%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"44.716243819208685%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"21.416185670514913%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"44.89911708488288%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"27.191779037128796%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"21.416185670514913%\" y=\"40\" height=\"20\" width=\"5.775593366613883%\" onmouseover=\"document.getElementById('_tp_kvrfyckicnyytypaqodb_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_3').style.opacity = 1;document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kvrfyckicnyytypaqodb_ind_3').style.textDecoration = 'none';document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_3').style.opacity = 0;document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"32.630290389309444%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"27.191779037128796%\" y=\"40\" height=\"20\" width=\"5.438511352180647%\" onmouseover=\"document.getElementById('_tp_kvrfyckicnyytypaqodb_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_8').style.opacity = 1;document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kvrfyckicnyytypaqodb_ind_8').style.textDecoration = 'none';document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_8').style.opacity = 0;document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"34.5695802416084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"32.630290389309444%\" y=\"40\" height=\"20\" width=\"1.9392898522989555%\" onmouseover=\"document.getElementById('_tp_kvrfyckicnyytypaqodb_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_5').style.opacity = 1;document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kvrfyckicnyytypaqodb_ind_5').style.textDecoration = 'none';document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_5').style.opacity = 0;document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"36.49665950502826%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"34.5695802416084%\" y=\"40\" height=\"20\" width=\"1.9270792634198628%\" onmouseover=\"document.getElementById('_tp_kvrfyckicnyytypaqodb_ind_12').style.textDecoration = 'underline';document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_12').style.opacity = 1;document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_12').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kvrfyckicnyytypaqodb_ind_12').style.textDecoration = 'none';document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_12').style.opacity = 0;document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_12').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"37.876427411447274%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"36.49665950502826%\" y=\"40\" height=\"20\" width=\"1.379767906419012%\" onmouseover=\"document.getElementById('_tp_kvrfyckicnyytypaqodb_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_11').style.opacity = 1;document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kvrfyckicnyytypaqodb_ind_11').style.textDecoration = 'none';document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_11').style.opacity = 0;document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"39.21926121543493%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"37.876427411447274%\" y=\"40\" height=\"20\" width=\"1.3428338039876593%\" onmouseover=\"document.getElementById('_tp_kvrfyckicnyytypaqodb_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_9').style.opacity = 1;document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kvrfyckicnyytypaqodb_ind_9').style.textDecoration = 'none';document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_9').style.opacity = 0;document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"40.539480122717976%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"39.21926121543493%\" y=\"40\" height=\"20\" width=\"1.3202189072830421%\" onmouseover=\"document.getElementById('_tp_kvrfyckicnyytypaqodb_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_4').style.opacity = 1;document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kvrfyckicnyytypaqodb_ind_4').style.textDecoration = 'none';document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_4').style.opacity = 0;document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"41.62055793403142%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"40.539480122717976%\" y=\"40\" height=\"20\" width=\"1.0810778113134418%\" onmouseover=\"document.getElementById('_tp_kvrfyckicnyytypaqodb_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_0').style.opacity = 1;document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kvrfyckicnyytypaqodb_ind_0').style.textDecoration = 'none';document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_0').style.opacity = 0;document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"42.51437257617428%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"41.62055793403142%\" y=\"40\" height=\"20\" width=\"0.8938146421428641%\" onmouseover=\"document.getElementById('_tp_kvrfyckicnyytypaqodb_ind_15').style.textDecoration = 'underline';document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_15').style.opacity = 1;document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_15').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kvrfyckicnyytypaqodb_ind_15').style.textDecoration = 'none';document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_15').style.opacity = 0;document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_15').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"43.179201718642425%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"42.51437257617428%\" y=\"40\" height=\"20\" width=\"0.6648291424681432%\" onmouseover=\"document.getElementById('_tp_kvrfyckicnyytypaqodb_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_1').style.opacity = 1;document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kvrfyckicnyytypaqodb_ind_1').style.textDecoration = 'none';document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_1').style.opacity = 0;document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"43.619485458538016%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"43.179201718642425%\" y=\"40\" height=\"20\" width=\"0.440283739895591%\" onmouseover=\"document.getElementById('_tp_kvrfyckicnyytypaqodb_ind_13').style.textDecoration = 'underline';document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_13').style.opacity = 1;document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_13').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kvrfyckicnyytypaqodb_ind_13').style.textDecoration = 'none';document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_13').style.opacity = 0;document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_13').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"43.94425283074358%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"43.619485458538016%\" y=\"40\" height=\"20\" width=\"0.32476737220556373%\" onmouseover=\"document.getElementById('_tp_kvrfyckicnyytypaqodb_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_7').style.opacity = 1;document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kvrfyckicnyytypaqodb_ind_7').style.textDecoration = 'none';document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_7').style.opacity = 0;document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"44.213761247132986%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"43.94425283074358%\" y=\"40\" height=\"20\" width=\"0.2695084163894066%\" onmouseover=\"document.getElementById('_tp_kvrfyckicnyytypaqodb_ind_14').style.textDecoration = 'underline';document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_14').style.opacity = 1;document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_14').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kvrfyckicnyytypaqodb_ind_14').style.textDecoration = 'none';document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_14').style.opacity = 0;document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_14').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"44.47420020989847%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"44.213761247132986%\" y=\"40\" height=\"20\" width=\"0.26043896276548395%\" onmouseover=\"document.getElementById('_tp_kvrfyckicnyytypaqodb_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_2').style.opacity = 1;document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kvrfyckicnyytypaqodb_ind_2').style.textDecoration = 'none';document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_2').style.opacity = 0;document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"44.716243819208685%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"44.47420020989847%\" y=\"40\" height=\"20\" width=\"0.2420436093102154%\" onmouseover=\"document.getElementById('_tp_kvrfyckicnyytypaqodb_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_6').style.opacity = 1;document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kvrfyckicnyytypaqodb_ind_6').style.textDecoration = 'none';document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_6').style.opacity = 0;document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"44.716243819208685%\" y=\"40\" height=\"20\" width=\"0.18287326567418916%\" onmouseover=\"document.getElementById('_tp_kvrfyckicnyytypaqodb_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_10').style.opacity = 1;document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kvrfyckicnyytypaqodb_ind_10').style.textDecoration = 'none';document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_10').style.opacity = 0;document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.204 / 2</div\n",
|
|
" ><div id='_tp_kvrfyckicnyytypaqodb_ind_0'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.022539116656763607); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_0').style.opacity = 1; document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_0').style.opacity = 0; document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_0').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.126 / 2</div\n",
|
|
" ><div id='_tp_kvrfyckicnyytypaqodb_ind_1'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_1').style.opacity = 1; document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_1').style.opacity = 0; document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_1').style.opacity = 0;\"\n",
|
|
" >can go </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.049</div\n",
|
|
" ><div id='_tp_kvrfyckicnyytypaqodb_ind_2'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_2').style.opacity = 1; document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_2').style.opacity = 0; document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_2').style.opacity = 0;\"\n",
|
|
" >from </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.092</div\n",
|
|
" ><div id='_tp_kvrfyckicnyytypaqodb_ind_3'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.1565458506634977); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_3').style.opacity = 1; document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_3').style.opacity = 0; document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_3').style.opacity = 0;\"\n",
|
|
" >feeling </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.25</div\n",
|
|
" ><div id='_tp_kvrfyckicnyytypaqodb_ind_4'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03042186571598325); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_4').style.opacity = 1; document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_4').style.opacity = 0; document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_4').style.opacity = 0;\"\n",
|
|
" >so </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.367</div\n",
|
|
" ><div id='_tp_kvrfyckicnyytypaqodb_ind_5'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.04618736383442258); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_5').style.opacity = 1; document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_5').style.opacity = 0; document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_5').style.opacity = 0;\"\n",
|
|
" >hopeless </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.046 / 2</div\n",
|
|
" ><div id='_tp_kvrfyckicnyytypaqodb_ind_6'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_6').style.opacity = 1; document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_6').style.opacity = 0; document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_6').style.opacity = 0;\"\n",
|
|
" >to so </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.061</div\n",
|
|
" ><div id='_tp_kvrfyckicnyytypaqodb_ind_7'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_7').style.opacity = 1; document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_7').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_7').style.opacity = 0; document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_7').style.opacity = 0;\"\n",
|
|
" >damned </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.029</div\n",
|
|
" ><div id='_tp_kvrfyckicnyytypaqodb_ind_8'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.14866310160427798); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_8').style.opacity = 1; document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_8').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_8').style.opacity = 0; document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_8').style.opacity = 0;\"\n",
|
|
" >hopeful </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.254 / 2</div\n",
|
|
" ><div id='_tp_kvrfyckicnyytypaqodb_ind_9'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03042186571598325); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_9').style.opacity = 1; document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_9').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_9').style.opacity = 0; document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_9').style.opacity = 0;\"\n",
|
|
" >just from </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.035 / 2</div\n",
|
|
" ><div id='_tp_kvrfyckicnyytypaqodb_ind_10'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_10').style.opacity = 1; document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_10').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_10').style.opacity = 0; document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_10').style.opacity = 0;\"\n",
|
|
" >being around </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.261 / 2</div\n",
|
|
" ><div id='_tp_kvrfyckicnyytypaqodb_ind_11'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03042186571598325); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_11').style.opacity = 1; document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_11').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_11').style.opacity = 0; document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_11').style.opacity = 0;\"\n",
|
|
" >someone who </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.364</div\n",
|
|
" ><div id='_tp_kvrfyckicnyytypaqodb_ind_12'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.04618736383442258); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_12').style.opacity = 1; document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_12').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_12').style.opacity = 0; document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_12').style.opacity = 0;\"\n",
|
|
" >cares </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.083</div\n",
|
|
" ><div id='_tp_kvrfyckicnyytypaqodb_ind_13'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_13').style.opacity = 1; document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_13').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_13').style.opacity = 0; document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_13').style.opacity = 0;\"\n",
|
|
" >and </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.051</div\n",
|
|
" ><div id='_tp_kvrfyckicnyytypaqodb_ind_14'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_14').style.opacity = 1; document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_14').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_14').style.opacity = 0; document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_14').style.opacity = 0;\"\n",
|
|
" >is </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.169</div\n",
|
|
" ><div id='_tp_kvrfyckicnyytypaqodb_ind_15'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.022539116656763607); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_15').style.opacity = 1; document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_15').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_15').style.opacity = 0; document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_15').style.opacity = 0;\"\n",
|
|
" >awake</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_kvrfyckicnyytypaqodb_ind_16'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_16').style.opacity = 1; document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_16').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_kvrfyckicnyytypaqodb_ind_16').style.opacity = 0; document.getElementById('_fs_kvrfyckicnyytypaqodb_ind_16').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_bgksouvlavqavwefwxrm_output_4_zoom' style='display: none;'><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"53.46875339307945%\" y1=\"33\" x2=\"53.46875339307945%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"53.46875339307945%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"34.706649423098845%\" y1=\"33\" x2=\"34.706649423098845%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"34.706649423098845%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-5</text><line x1=\"15.944545453118236%\" y1=\"33\" x2=\"15.944545453118236%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"15.944545453118236%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6</text><line x1=\"72.23085736306007%\" y1=\"33\" x2=\"72.23085736306007%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"72.23085736306007%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-3</text><line x1=\"90.99296133304067%\" y1=\"33\" x2=\"90.99296133304067%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"90.99296133304067%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2</text><line x1=\"91.66666313259798%\" y1=\"33\" x2=\"91.66666313259798%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"91.66666313259798%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1.96409</text><text x=\"91.66666313259798%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1.96409</text><text x=\"91.66666313259798%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"8.33333667978099%\" y1=\"33\" x2=\"8.33333667978099%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"8.33333667978099%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.40567</text><text x=\"8.33333667978099%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.40567</text><text x=\"8.33333667978099%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">fear</tspan>(inputs)</text><rect x=\"8.33333331769825%\" width=\"3.3620827333806387e-06%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"8.33333331769825%\" x2=\"8.33333667978099%\" y1=\"60\" y2=\"60\" id=\"_fb_qarksfbsqzpxhfeuqsfk_ind_16\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.33333499873962%\" y=\"71\" font-size=\"12px\" id=\"_fs_qarksfbsqzpxhfeuqsfk_ind_16\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"8.33333331769825%\" y=\"40\" height=\"20\" width=\"3.362082740210326e-06%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><rect transform=\"translate(-8,0)\" x=\"8.33333667978099%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.33333331769825%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><rect x=\"8.33333331769825%\" y=\"40\" height=\"20\" width=\"3.362082740210326e-06%\" onmouseover=\"document.getElementById('_tp_qarksfbsqzpxhfeuqsfk_ind_16').style.textDecoration = 'underline';document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_16').style.opacity = 1;document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_16').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qarksfbsqzpxhfeuqsfk_ind_16').style.textDecoration = 'none';document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_16').style.opacity = 0;document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_16').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"8.33333667978099%\" width=\"83.33332981489973%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"8.33333667978099%\" x2=\"28.829049859878264%\" y1=\"60\" y2=\"60\" id=\"_fb_qarksfbsqzpxhfeuqsfk_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"18.581193269829626%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_qarksfbsqzpxhfeuqsfk_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.092</text><svg x=\"8.33333667978099%\" y=\"40\" height=\"20\" width=\"20.495713180097276%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feeling</text> </svg></svg><line x1=\"28.829049859878264%\" x2=\"48.12856797438638%\" y1=\"60\" y2=\"60\" id=\"_fb_qarksfbsqzpxhfeuqsfk_ind_8\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"38.47880891713232%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_qarksfbsqzpxhfeuqsfk_ind_8\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.029</text><svg x=\"28.829049859878264%\" y=\"40\" height=\"20\" width=\"19.299518114508114%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeful</text> </svg></svg><line x1=\"48.12856797438638%\" x2=\"55.010480543846846%\" y1=\"60\" y2=\"60\" id=\"_fb_qarksfbsqzpxhfeuqsfk_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"51.56952425911661%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_qarksfbsqzpxhfeuqsfk_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.367</text><svg x=\"48.12856797438638%\" y=\"40\" height=\"20\" width=\"6.881912569460468%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeless</text> </svg></svg><line x1=\"55.010480543846846%\" x2=\"61.84906168196512%\" y1=\"60\" y2=\"60\" id=\"_fb_qarksfbsqzpxhfeuqsfk_ind_12\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"58.42977111290598%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_qarksfbsqzpxhfeuqsfk_ind_12\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.364</text><svg x=\"55.010480543846846%\" y=\"40\" height=\"20\" width=\"6.838581138118272%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">cares</text> </svg></svg><line x1=\"61.84906168196512%\" x2=\"66.74541180047197%\" y1=\"60\" y2=\"60\" id=\"_fb_qarksfbsqzpxhfeuqsfk_ind_11\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"64.29723674121854%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_qarksfbsqzpxhfeuqsfk_ind_11\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.261</text><svg x=\"61.84906168196512%\" y=\"40\" height=\"20\" width=\"4.896350118506852%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">someone who</text> </svg></svg><line x1=\"66.74541180047197%\" x2=\"71.51069473298664%\" y1=\"60\" y2=\"60\" id=\"_fb_qarksfbsqzpxhfeuqsfk_ind_9\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"69.1280532667293%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_qarksfbsqzpxhfeuqsfk_ind_9\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.254</text><svg x=\"66.74541180047197%\" y=\"40\" height=\"20\" width=\"4.7652829325146655%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">just from</text> </svg></svg><line x1=\"71.51069473298664%\" x2=\"76.19572471017123%\" y1=\"60\" y2=\"60\" id=\"_fb_qarksfbsqzpxhfeuqsfk_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"73.85320972157893%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_qarksfbsqzpxhfeuqsfk_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.25</text><svg x=\"71.51069473298664%\" y=\"40\" height=\"20\" width=\"4.685029977184598%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><line x1=\"76.19572471017123%\" x2=\"80.03212026982577%\" y1=\"60\" y2=\"60\" id=\"_fb_qarksfbsqzpxhfeuqsfk_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"78.1139224899985%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_qarksfbsqzpxhfeuqsfk_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.204</text><svg x=\"76.19572471017123%\" y=\"40\" height=\"20\" width=\"3.836395559654534%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"80.03212026982577%\" x2=\"83.20397939817568%\" y1=\"60\" y2=\"60\" id=\"_fb_qarksfbsqzpxhfeuqsfk_ind_15\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"81.61804983400071%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_qarksfbsqzpxhfeuqsfk_ind_15\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.169</text><svg x=\"80.03212026982577%\" y=\"40\" height=\"20\" width=\"3.171859128349908%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">awake</text> </svg></svg><line x1=\"83.20397939817568%\" x2=\"85.56324303618797%\" y1=\"60\" y2=\"60\" id=\"_fb_qarksfbsqzpxhfeuqsfk_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"84.38361121718182%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_qarksfbsqzpxhfeuqsfk_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.126</text><svg x=\"83.20397939817568%\" y=\"40\" height=\"20\" width=\"2.359263638012294%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">can go</text> </svg></svg><line x1=\"85.56324303618797%\" x2=\"87.12566765266529%\" y1=\"60\" y2=\"60\" id=\"_fb_qarksfbsqzpxhfeuqsfk_ind_13\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"86.34445534442662%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_qarksfbsqzpxhfeuqsfk_ind_13\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.083</text><svg x=\"85.56324303618797%\" y=\"40\" height=\"20\" width=\"1.5624246164773155%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">and</text> </svg></svg><line x1=\"87.12566765266529%\" x2=\"88.27816203522632%\" y1=\"60\" y2=\"60\" id=\"_fb_qarksfbsqzpxhfeuqsfk_ind_7\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"87.7019148439458%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_qarksfbsqzpxhfeuqsfk_ind_7\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.061</text><svg x=\"87.12566765266529%\" y=\"40\" height=\"20\" width=\"1.1524943825610308%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">damned</text> </svg></svg><line x1=\"88.27816203522632%\" x2=\"89.23456025291763%\" y1=\"60\" y2=\"60\" id=\"_fb_qarksfbsqzpxhfeuqsfk_ind_14\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"88.75636114407197%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_qarksfbsqzpxhfeuqsfk_ind_14\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.051</text><svg x=\"88.27816203522632%\" y=\"40\" height=\"20\" width=\"0.9563982176913157%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">is</text> </svg></svg><line x1=\"89.23456025291763%\" x2=\"90.15877391252523%\" y1=\"60\" y2=\"60\" id=\"_fb_qarksfbsqzpxhfeuqsfk_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"89.69666708272143%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_qarksfbsqzpxhfeuqsfk_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.049</text><svg x=\"89.23456025291763%\" y=\"40\" height=\"20\" width=\"0.9242136596076023%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><line x1=\"90.15877391252523%\" x2=\"91.01770841130312%\" y1=\"60\" y2=\"60\" id=\"_fb_qarksfbsqzpxhfeuqsfk_ind_6\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"90.58824116191417%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_qarksfbsqzpxhfeuqsfk_ind_6\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.046</text><svg x=\"90.15877391252523%\" y=\"40\" height=\"20\" width=\"0.8589344987778844%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to so</text> </svg></svg><line x1=\"91.01770841130312%\" x2=\"91.6666664946807%\" y1=\"60\" y2=\"60\" id=\"_fb_qarksfbsqzpxhfeuqsfk_ind_10\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.34218745299191%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_qarksfbsqzpxhfeuqsfk_ind_10\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.035</text><svg x=\"91.01770841130312%\" y=\"40\" height=\"20\" width=\"0.648958083377579%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">being around</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"28.829049859878264%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"28.829049859878264%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"28.829049859878264%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"28.829049859878264%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"28.829049859878264%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"28.829049859878264%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"28.829049859878264%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"28.829049859878264%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"48.12856797438638%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"48.12856797438638%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"48.12856797438638%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"48.12856797438638%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"48.12856797438638%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"48.12856797438638%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"48.12856797438638%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"48.12856797438638%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"55.010480543846846%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"55.010480543846846%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"55.010480543846846%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"55.010480543846846%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"55.010480543846846%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"55.010480543846846%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"55.010480543846846%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"55.010480543846846%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"61.84906168196512%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"61.84906168196512%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"61.84906168196512%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"61.84906168196512%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"61.84906168196512%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"61.84906168196512%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"61.84906168196512%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"61.84906168196512%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"66.74541180047197%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"66.74541180047197%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"66.74541180047197%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"66.74541180047197%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"66.74541180047197%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"66.74541180047197%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"66.74541180047197%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"66.74541180047197%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"71.51069473298664%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"71.51069473298664%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"71.51069473298664%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"71.51069473298664%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"71.51069473298664%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"71.51069473298664%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"71.51069473298664%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"71.51069473298664%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"76.19572471017123%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"76.19572471017123%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"76.19572471017123%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"76.19572471017123%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"76.19572471017123%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"76.19572471017123%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"76.19572471017123%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"76.19572471017123%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"80.03212026982577%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"80.03212026982577%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"80.03212026982577%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"80.03212026982577%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"80.03212026982577%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"80.03212026982577%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"80.03212026982577%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"80.03212026982577%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"83.20397939817568%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"83.20397939817568%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"83.20397939817568%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"83.20397939817568%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"83.20397939817568%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"83.20397939817568%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"83.20397939817568%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"83.20397939817568%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"85.56324303618797%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"85.56324303618797%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"85.56324303618797%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"85.56324303618797%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"85.56324303618797%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"85.56324303618797%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"85.56324303618797%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"85.56324303618797%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"87.12566765266529%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"87.12566765266529%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"87.12566765266529%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"87.12566765266529%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"87.12566765266529%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"87.12566765266529%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"87.12566765266529%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"87.12566765266529%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"88.27816203522632%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"88.27816203522632%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"88.27816203522632%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"88.27816203522632%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"88.27816203522632%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"88.27816203522632%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"88.27816203522632%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"88.27816203522632%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"89.23456025291763%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"89.23456025291763%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"89.23456025291763%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"89.23456025291763%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"89.23456025291763%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"89.23456025291763%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"89.23456025291763%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"89.23456025291763%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"90.15877391252523%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.15877391252523%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.15877391252523%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.15877391252523%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.15877391252523%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.15877391252523%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.15877391252523%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.15877391252523%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.01770841130312%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.01770841130312%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.01770841130312%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.01770841130312%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.01770841130312%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.01770841130312%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.01770841130312%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.01770841130312%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"8.33333667978099%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66666649468071%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"28.829049859878264%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"8.33333667978099%\" y=\"40\" height=\"20\" width=\"20.495713180097276%\" onmouseover=\"document.getElementById('_tp_qarksfbsqzpxhfeuqsfk_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_3').style.opacity = 1;document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qarksfbsqzpxhfeuqsfk_ind_3').style.textDecoration = 'none';document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_3').style.opacity = 0;document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"48.12856797438638%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"28.829049859878264%\" y=\"40\" height=\"20\" width=\"19.299518114508114%\" onmouseover=\"document.getElementById('_tp_qarksfbsqzpxhfeuqsfk_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_8').style.opacity = 1;document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qarksfbsqzpxhfeuqsfk_ind_8').style.textDecoration = 'none';document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_8').style.opacity = 0;document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"55.010480543846846%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"48.12856797438638%\" y=\"40\" height=\"20\" width=\"6.881912569460468%\" onmouseover=\"document.getElementById('_tp_qarksfbsqzpxhfeuqsfk_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_5').style.opacity = 1;document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qarksfbsqzpxhfeuqsfk_ind_5').style.textDecoration = 'none';document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_5').style.opacity = 0;document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"61.84906168196512%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"55.010480543846846%\" y=\"40\" height=\"20\" width=\"6.838581138118272%\" onmouseover=\"document.getElementById('_tp_qarksfbsqzpxhfeuqsfk_ind_12').style.textDecoration = 'underline';document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_12').style.opacity = 1;document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_12').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qarksfbsqzpxhfeuqsfk_ind_12').style.textDecoration = 'none';document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_12').style.opacity = 0;document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_12').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"66.74541180047197%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"61.84906168196512%\" y=\"40\" height=\"20\" width=\"4.896350118506852%\" onmouseover=\"document.getElementById('_tp_qarksfbsqzpxhfeuqsfk_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_11').style.opacity = 1;document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qarksfbsqzpxhfeuqsfk_ind_11').style.textDecoration = 'none';document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_11').style.opacity = 0;document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"71.51069473298664%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"66.74541180047197%\" y=\"40\" height=\"20\" width=\"4.7652829325146655%\" onmouseover=\"document.getElementById('_tp_qarksfbsqzpxhfeuqsfk_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_9').style.opacity = 1;document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qarksfbsqzpxhfeuqsfk_ind_9').style.textDecoration = 'none';document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_9').style.opacity = 0;document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"76.19572471017123%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"71.51069473298664%\" y=\"40\" height=\"20\" width=\"4.685029977184598%\" onmouseover=\"document.getElementById('_tp_qarksfbsqzpxhfeuqsfk_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_4').style.opacity = 1;document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qarksfbsqzpxhfeuqsfk_ind_4').style.textDecoration = 'none';document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_4').style.opacity = 0;document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"80.03212026982577%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"76.19572471017123%\" y=\"40\" height=\"20\" width=\"3.836395559654534%\" onmouseover=\"document.getElementById('_tp_qarksfbsqzpxhfeuqsfk_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_0').style.opacity = 1;document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qarksfbsqzpxhfeuqsfk_ind_0').style.textDecoration = 'none';document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_0').style.opacity = 0;document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"83.20397939817568%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"80.03212026982577%\" y=\"40\" height=\"20\" width=\"3.171859128349908%\" onmouseover=\"document.getElementById('_tp_qarksfbsqzpxhfeuqsfk_ind_15').style.textDecoration = 'underline';document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_15').style.opacity = 1;document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_15').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qarksfbsqzpxhfeuqsfk_ind_15').style.textDecoration = 'none';document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_15').style.opacity = 0;document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_15').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"85.56324303618797%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"83.20397939817568%\" y=\"40\" height=\"20\" width=\"2.359263638012294%\" onmouseover=\"document.getElementById('_tp_qarksfbsqzpxhfeuqsfk_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_1').style.opacity = 1;document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qarksfbsqzpxhfeuqsfk_ind_1').style.textDecoration = 'none';document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_1').style.opacity = 0;document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"87.12566765266529%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"85.56324303618797%\" y=\"40\" height=\"20\" width=\"1.5624246164773155%\" onmouseover=\"document.getElementById('_tp_qarksfbsqzpxhfeuqsfk_ind_13').style.textDecoration = 'underline';document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_13').style.opacity = 1;document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_13').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qarksfbsqzpxhfeuqsfk_ind_13').style.textDecoration = 'none';document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_13').style.opacity = 0;document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_13').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"88.27816203522632%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"87.12566765266529%\" y=\"40\" height=\"20\" width=\"1.1524943825610308%\" onmouseover=\"document.getElementById('_tp_qarksfbsqzpxhfeuqsfk_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_7').style.opacity = 1;document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qarksfbsqzpxhfeuqsfk_ind_7').style.textDecoration = 'none';document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_7').style.opacity = 0;document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"89.23456025291763%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"88.27816203522632%\" y=\"40\" height=\"20\" width=\"0.9563982176913157%\" onmouseover=\"document.getElementById('_tp_qarksfbsqzpxhfeuqsfk_ind_14').style.textDecoration = 'underline';document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_14').style.opacity = 1;document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_14').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qarksfbsqzpxhfeuqsfk_ind_14').style.textDecoration = 'none';document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_14').style.opacity = 0;document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_14').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"90.15877391252523%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"89.23456025291763%\" y=\"40\" height=\"20\" width=\"0.9242136596076023%\" onmouseover=\"document.getElementById('_tp_qarksfbsqzpxhfeuqsfk_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_2').style.opacity = 1;document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qarksfbsqzpxhfeuqsfk_ind_2').style.textDecoration = 'none';document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_2').style.opacity = 0;document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.01770841130312%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"90.15877391252523%\" y=\"40\" height=\"20\" width=\"0.8589344987778844%\" onmouseover=\"document.getElementById('_tp_qarksfbsqzpxhfeuqsfk_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_6').style.opacity = 1;document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qarksfbsqzpxhfeuqsfk_ind_6').style.textDecoration = 'none';document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_6').style.opacity = 0;document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"91.01770841130312%\" y=\"40\" height=\"20\" width=\"0.648958083377579%\" onmouseover=\"document.getElementById('_tp_qarksfbsqzpxhfeuqsfk_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_10').style.opacity = 1;document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qarksfbsqzpxhfeuqsfk_ind_10').style.textDecoration = 'none';document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_10').style.opacity = 0;document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.204 / 2</div\n",
|
|
" ><div id='_tp_qarksfbsqzpxhfeuqsfk_ind_0'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.18019409784115656); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_0').style.opacity = 1; document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_0').style.opacity = 0; document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_0').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.126 / 2</div\n",
|
|
" ><div id='_tp_qarksfbsqzpxhfeuqsfk_ind_1'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.10924935630817977); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_1').style.opacity = 1; document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_1').style.opacity = 0; document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_1').style.opacity = 0;\"\n",
|
|
" >can go </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.049</div\n",
|
|
" ><div id='_tp_qarksfbsqzpxhfeuqsfk_ind_2'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03830461477520309); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_2').style.opacity = 1; document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_2').style.opacity = 0; document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_2').style.opacity = 0;\"\n",
|
|
" >from </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.092</div\n",
|
|
" ><div id='_tp_qarksfbsqzpxhfeuqsfk_ind_3'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 1.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_3').style.opacity = 1; document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_3').style.opacity = 0; document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_3').style.opacity = 0;\"\n",
|
|
" >feeling </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.25</div\n",
|
|
" ><div id='_tp_qarksfbsqzpxhfeuqsfk_ind_4'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.22749059219647463); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_4').style.opacity = 1; document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_4').style.opacity = 0; document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_4').style.opacity = 0;\"\n",
|
|
" >so </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.367</div\n",
|
|
" ><div id='_tp_qarksfbsqzpxhfeuqsfk_ind_5'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.3299663299663299); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_5').style.opacity = 1; document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_5').style.opacity = 0; document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_5').style.opacity = 0;\"\n",
|
|
" >hopeless </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.046 / 2</div\n",
|
|
" ><div id='_tp_qarksfbsqzpxhfeuqsfk_ind_6'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03830461477520309); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_6').style.opacity = 1; document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_6').style.opacity = 0; document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_6').style.opacity = 0;\"\n",
|
|
" >to so </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.061</div\n",
|
|
" ><div id='_tp_qarksfbsqzpxhfeuqsfk_ind_7'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.05407011289364222); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_7').style.opacity = 1; document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_7').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_7').style.opacity = 0; document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_7').style.opacity = 0;\"\n",
|
|
" >damned </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.029</div\n",
|
|
" ><div id='_tp_qarksfbsqzpxhfeuqsfk_ind_8'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.9448207565854625); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_8').style.opacity = 1; document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_8').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_8').style.opacity = 0; document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_8').style.opacity = 0;\"\n",
|
|
" >hopeful </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.254 / 2</div\n",
|
|
" ><div id='_tp_qarksfbsqzpxhfeuqsfk_ind_9'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.22749059219647463); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_9').style.opacity = 1; document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_9').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_9').style.opacity = 0; document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_9').style.opacity = 0;\"\n",
|
|
" >just from </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.035 / 2</div\n",
|
|
" ><div id='_tp_qarksfbsqzpxhfeuqsfk_ind_10'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03042186571598325); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_10').style.opacity = 1; document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_10').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_10').style.opacity = 0; document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_10').style.opacity = 0;\"\n",
|
|
" >being around </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.261 / 2</div\n",
|
|
" ><div id='_tp_qarksfbsqzpxhfeuqsfk_ind_11'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.23537334125569417); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_11').style.opacity = 1; document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_11').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_11').style.opacity = 0; document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_11').style.opacity = 0;\"\n",
|
|
" >someone who </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.364</div\n",
|
|
" ><div id='_tp_qarksfbsqzpxhfeuqsfk_ind_12'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.3299663299663299); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_12').style.opacity = 1; document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_12').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_12').style.opacity = 0; document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_12').style.opacity = 0;\"\n",
|
|
" >cares </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.083</div\n",
|
|
" ><div id='_tp_qarksfbsqzpxhfeuqsfk_ind_13'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.06983561101208147); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_13').style.opacity = 1; document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_13').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_13').style.opacity = 0; document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_13').style.opacity = 0;\"\n",
|
|
" >and </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.051</div\n",
|
|
" ><div id='_tp_qarksfbsqzpxhfeuqsfk_ind_14'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03830461477520309); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_14').style.opacity = 1; document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_14').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_14').style.opacity = 0; document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_14').style.opacity = 0;\"\n",
|
|
" >is </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.169</div\n",
|
|
" ><div id='_tp_qarksfbsqzpxhfeuqsfk_ind_15'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.14866310160427798); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_15').style.opacity = 1; document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_15').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_15').style.opacity = 0; document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_15').style.opacity = 0;\"\n",
|
|
" >awake</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_qarksfbsqzpxhfeuqsfk_ind_16'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_16').style.opacity = 1; document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_16').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_qarksfbsqzpxhfeuqsfk_ind_16').style.opacity = 0; document.getElementById('_fs_qarksfbsqzpxhfeuqsfk_ind_16').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_bgksouvlavqavwefwxrm_output_5' style='display: none';><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"49.99634084343776%\" y1=\"33\" x2=\"49.99634084343776%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"49.99634084343776%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1</text><line x1=\"34.135128947971666%\" y1=\"33\" x2=\"34.135128947971666%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"34.135128947971666%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"18.273917052505578%\" y1=\"33\" x2=\"18.273917052505578%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"18.273917052505578%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7</text><line x1=\"65.85755273890385%\" y1=\"33\" x2=\"65.85755273890385%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"65.85755273890385%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">2</text><line x1=\"81.71876463436993%\" y1=\"33\" x2=\"81.71876463436993%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"81.71876463436993%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">5</text><line x1=\"46.705319794731835%\" y1=\"33\" x2=\"46.705319794731835%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"46.705319794731835%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1.62247</text><text x=\"46.705319794731835%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1.62247</text><text x=\"46.705319794731835%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"14.018853385058513%\" y1=\"33\" x2=\"14.018853385058513%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"14.018853385058513%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7.80481</text><text x=\"14.018853385058513%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7.80481</text><text x=\"14.018853385058513%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">surprise</tspan>(inputs)</text><rect x=\"13.665664682712515%\" width=\"0.3531887023459986%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"13.665665638286754%\" x2=\"14.018853385058513%\" y1=\"60\" y2=\"60\" id=\"_fb_flcdoikbvuepwezhdxka_ind_10\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"13.842259511672633%\" y=\"71\" font-size=\"12px\" id=\"_fs_flcdoikbvuepwezhdxka_ind_10\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.067</text><svg x=\"13.665665638286754%\" y=\"40\" height=\"20\" width=\"0.35318774677175924%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">being around</text> </svg></svg><line x1=\"13.665664682712515%\" x2=\"13.665665638286754%\" y1=\"60\" y2=\"60\" id=\"_fb_flcdoikbvuepwezhdxka_ind_16\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"13.665665160499636%\" y=\"71\" font-size=\"12px\" id=\"_fs_flcdoikbvuepwezhdxka_ind_16\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"13.665664682712515%\" y=\"40\" height=\"20\" width=\"9.555742384037558e-07%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"13.665665638286754%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"13.665665638286754%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"13.665665638286754%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"13.665665638286754%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"13.665665638286754%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"13.665665638286754%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"13.665665638286754%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"13.665665638286754%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"14.018853385058513%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"13.665664682712515%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"14.018853385058513%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"13.665665638286754%\" y=\"40\" height=\"20\" width=\"0.35318774677175924%\" onmouseover=\"document.getElementById('_tp_flcdoikbvuepwezhdxka_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_10').style.opacity = 1;document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_flcdoikbvuepwezhdxka_ind_10').style.textDecoration = 'none';document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_10').style.opacity = 0;document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"13.665664682712515%\" y=\"40\" height=\"20\" width=\"9.555742384037558e-07%\" onmouseover=\"document.getElementById('_tp_flcdoikbvuepwezhdxka_ind_16').style.textDecoration = 'underline';document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_16').style.opacity = 1;document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_16').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_flcdoikbvuepwezhdxka_ind_16').style.textDecoration = 'none';document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_16').style.opacity = 0;document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_16').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"14.018853385058513%\" width=\"33.03965511201931%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"14.018853385058513%\" x2=\"23.791750319347326%\" y1=\"60\" y2=\"60\" id=\"_fb_flcdoikbvuepwezhdxka_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"18.905301852202918%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_flcdoikbvuepwezhdxka_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.848</text><svg x=\"14.018853385058513%\" y=\"40\" height=\"20\" width=\"9.772896934288813%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeless</text> </svg></svg><line x1=\"23.791750319347326%\" x2=\"31.20983115207067%\" y1=\"60\" y2=\"60\" id=\"_fb_flcdoikbvuepwezhdxka_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"27.500790735708996%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_flcdoikbvuepwezhdxka_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.403</text><svg x=\"23.791750319347326%\" y=\"40\" height=\"20\" width=\"7.418080832723344%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feeling</text> </svg></svg><line x1=\"31.20983115207067%\" x2=\"37.28608122844258%\" y1=\"60\" y2=\"60\" id=\"_fb_flcdoikbvuepwezhdxka_ind_8\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"34.24795619025663%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_flcdoikbvuepwezhdxka_ind_8\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.149</text><svg x=\"31.20983115207067%\" y=\"40\" height=\"20\" width=\"6.076250076371913%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeful</text> </svg></svg><line x1=\"37.28608122844258%\" x2=\"39.13743867459922%\" y1=\"60\" y2=\"60\" id=\"_fb_flcdoikbvuepwezhdxka_ind_11\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"38.211759951520904%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_flcdoikbvuepwezhdxka_ind_11\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.35</text><svg x=\"37.28608122844258%\" y=\"40\" height=\"20\" width=\"1.8513574461566336%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">someone who</text> </svg></svg><line x1=\"39.13743867459922%\" x2=\"40.74655661155334%\" y1=\"60\" y2=\"60\" id=\"_fb_flcdoikbvuepwezhdxka_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"39.94199764307628%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_flcdoikbvuepwezhdxka_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.304</text><svg x=\"39.13743867459922%\" y=\"40\" height=\"20\" width=\"1.6091179369541209%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><line x1=\"40.74655661155334%\" x2=\"42.08354182174907%\" y1=\"60\" y2=\"60\" id=\"_fb_flcdoikbvuepwezhdxka_ind_15\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"41.415049216651205%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_flcdoikbvuepwezhdxka_ind_15\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.253</text><svg x=\"40.74655661155334%\" y=\"40\" height=\"20\" width=\"1.336985210195735%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">awake</text> </svg></svg><line x1=\"42.08354182174907%\" x2=\"43.34184337858503%\" y1=\"60\" y2=\"60\" id=\"_fb_flcdoikbvuepwezhdxka_ind_12\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"42.71269260016705%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_flcdoikbvuepwezhdxka_ind_12\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.238</text><svg x=\"42.08354182174907%\" y=\"40\" height=\"20\" width=\"1.25830155683596%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">cares</text> </svg></svg><line x1=\"43.34184337858503%\" x2=\"44.36361202984721%\" y1=\"60\" y2=\"60\" id=\"_fb_flcdoikbvuepwezhdxka_ind_9\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"43.85272770421612%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_flcdoikbvuepwezhdxka_ind_9\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.193</text><svg x=\"43.34184337858503%\" y=\"40\" height=\"20\" width=\"1.0217686512621782%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">just from</text> </svg></svg><line x1=\"44.36361202984721%\" x2=\"45.17001723402044%\" y1=\"60\" y2=\"60\" id=\"_fb_flcdoikbvuepwezhdxka_ind_14\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"44.766814631933826%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_flcdoikbvuepwezhdxka_ind_14\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.153</text><svg x=\"44.36361202984721%\" y=\"40\" height=\"20\" width=\"0.806405204173231%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">is</text> </svg></svg><line x1=\"45.17001723402044%\" x2=\"45.77853501727609%\" y1=\"60\" y2=\"60\" id=\"_fb_flcdoikbvuepwezhdxka_ind_13\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"45.47427612564827%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_flcdoikbvuepwezhdxka_ind_13\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.115</text><svg x=\"45.17001723402044%\" y=\"40\" height=\"20\" width=\"0.6085177832556496%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">and</text> </svg></svg><line x1=\"45.77853501727609%\" x2=\"46.32720358245865%\" y1=\"60\" y2=\"60\" id=\"_fb_flcdoikbvuepwezhdxka_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"46.05286929986737%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_flcdoikbvuepwezhdxka_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.104</text><svg x=\"45.77853501727609%\" y=\"40\" height=\"20\" width=\"0.5486685651825596%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"46.32720358245865%\" x2=\"46.59621354652081%\" y1=\"60\" y2=\"60\" id=\"_fb_flcdoikbvuepwezhdxka_ind_6\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"46.461708564489726%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_flcdoikbvuepwezhdxka_ind_6\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.051</text><svg x=\"46.32720358245865%\" y=\"40\" height=\"20\" width=\"0.2690099640621568%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to so</text> </svg></svg><line x1=\"46.59621354652081%\" x2=\"46.85978937726853%\" y1=\"60\" y2=\"60\" id=\"_fb_flcdoikbvuepwezhdxka_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"46.728001461894664%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_flcdoikbvuepwezhdxka_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.05</text><svg x=\"46.59621354652081%\" y=\"40\" height=\"20\" width=\"0.26357583074771895%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><line x1=\"46.85978937726853%\" x2=\"47.033131767127244%\" y1=\"60\" y2=\"60\" id=\"_fb_flcdoikbvuepwezhdxka_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"46.946460572197886%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_flcdoikbvuepwezhdxka_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.033</text><svg x=\"46.85978937726853%\" y=\"40\" height=\"20\" width=\"0.17334238985871764%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">can go</text> </svg></svg><line x1=\"47.033131767127244%\" x2=\"47.058508497077824%\" y1=\"60\" y2=\"60\" id=\"_fb_flcdoikbvuepwezhdxka_ind_7\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"47.045820132102534%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_flcdoikbvuepwezhdxka_ind_7\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.005</text><svg x=\"47.033131767127244%\" y=\"40\" height=\"20\" width=\"0.025376729950579602%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">damned</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"23.791750319347326%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"23.791750319347326%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"23.791750319347326%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"23.791750319347326%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"23.791750319347326%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"23.791750319347326%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"23.791750319347326%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"23.791750319347326%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"31.20983115207067%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"31.20983115207067%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"31.20983115207067%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"31.20983115207067%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"31.20983115207067%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"31.20983115207067%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"31.20983115207067%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"31.20983115207067%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"37.28608122844258%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"37.28608122844258%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"37.28608122844258%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"37.28608122844258%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"37.28608122844258%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"37.28608122844258%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"37.28608122844258%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"37.28608122844258%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"39.13743867459922%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"39.13743867459922%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"39.13743867459922%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"39.13743867459922%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"39.13743867459922%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"39.13743867459922%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"39.13743867459922%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"39.13743867459922%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"40.74655661155334%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"40.74655661155334%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"40.74655661155334%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"40.74655661155334%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"40.74655661155334%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"40.74655661155334%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"40.74655661155334%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"40.74655661155334%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"42.08354182174907%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"42.08354182174907%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"42.08354182174907%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"42.08354182174907%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"42.08354182174907%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"42.08354182174907%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"42.08354182174907%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"42.08354182174907%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"43.34184337858503%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"43.34184337858503%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"43.34184337858503%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"43.34184337858503%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"43.34184337858503%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"43.34184337858503%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"43.34184337858503%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"43.34184337858503%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"44.36361202984721%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"44.36361202984721%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"44.36361202984721%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"44.36361202984721%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"44.36361202984721%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"44.36361202984721%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"44.36361202984721%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"44.36361202984721%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"45.17001723402044%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"45.17001723402044%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"45.17001723402044%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"45.17001723402044%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"45.17001723402044%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"45.17001723402044%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"45.17001723402044%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"45.17001723402044%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"45.77853501727609%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"45.77853501727609%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"45.77853501727609%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"45.77853501727609%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"45.77853501727609%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"45.77853501727609%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"45.77853501727609%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"45.77853501727609%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"46.32720358245865%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"46.32720358245865%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"46.32720358245865%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"46.32720358245865%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"46.32720358245865%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"46.32720358245865%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"46.32720358245865%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"46.32720358245865%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"46.59621354652081%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"46.59621354652081%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"46.59621354652081%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"46.59621354652081%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"46.59621354652081%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"46.59621354652081%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"46.59621354652081%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"46.59621354652081%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"46.85978937726853%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"46.85978937726853%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"46.85978937726853%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"46.85978937726853%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"46.85978937726853%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"46.85978937726853%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"46.85978937726853%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"46.85978937726853%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"47.033131767127244%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"47.033131767127244%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"47.033131767127244%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"47.033131767127244%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"47.033131767127244%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"47.033131767127244%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"47.033131767127244%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"47.033131767127244%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"14.018853385058513%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"47.058508497077824%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"23.791750319347326%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"14.018853385058513%\" y=\"40\" height=\"20\" width=\"9.772896934288813%\" onmouseover=\"document.getElementById('_tp_flcdoikbvuepwezhdxka_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_5').style.opacity = 1;document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_flcdoikbvuepwezhdxka_ind_5').style.textDecoration = 'none';document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_5').style.opacity = 0;document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"31.20983115207067%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"23.791750319347326%\" y=\"40\" height=\"20\" width=\"7.418080832723344%\" onmouseover=\"document.getElementById('_tp_flcdoikbvuepwezhdxka_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_3').style.opacity = 1;document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_flcdoikbvuepwezhdxka_ind_3').style.textDecoration = 'none';document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_3').style.opacity = 0;document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"37.28608122844258%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"31.20983115207067%\" y=\"40\" height=\"20\" width=\"6.076250076371913%\" onmouseover=\"document.getElementById('_tp_flcdoikbvuepwezhdxka_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_8').style.opacity = 1;document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_flcdoikbvuepwezhdxka_ind_8').style.textDecoration = 'none';document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_8').style.opacity = 0;document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"39.13743867459922%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"37.28608122844258%\" y=\"40\" height=\"20\" width=\"1.8513574461566336%\" onmouseover=\"document.getElementById('_tp_flcdoikbvuepwezhdxka_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_11').style.opacity = 1;document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_flcdoikbvuepwezhdxka_ind_11').style.textDecoration = 'none';document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_11').style.opacity = 0;document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"40.74655661155334%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"39.13743867459922%\" y=\"40\" height=\"20\" width=\"1.6091179369541209%\" onmouseover=\"document.getElementById('_tp_flcdoikbvuepwezhdxka_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_4').style.opacity = 1;document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_flcdoikbvuepwezhdxka_ind_4').style.textDecoration = 'none';document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_4').style.opacity = 0;document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"42.08354182174907%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"40.74655661155334%\" y=\"40\" height=\"20\" width=\"1.336985210195735%\" onmouseover=\"document.getElementById('_tp_flcdoikbvuepwezhdxka_ind_15').style.textDecoration = 'underline';document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_15').style.opacity = 1;document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_15').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_flcdoikbvuepwezhdxka_ind_15').style.textDecoration = 'none';document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_15').style.opacity = 0;document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_15').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"43.34184337858503%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"42.08354182174907%\" y=\"40\" height=\"20\" width=\"1.25830155683596%\" onmouseover=\"document.getElementById('_tp_flcdoikbvuepwezhdxka_ind_12').style.textDecoration = 'underline';document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_12').style.opacity = 1;document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_12').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_flcdoikbvuepwezhdxka_ind_12').style.textDecoration = 'none';document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_12').style.opacity = 0;document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_12').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"44.36361202984721%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"43.34184337858503%\" y=\"40\" height=\"20\" width=\"1.0217686512621782%\" onmouseover=\"document.getElementById('_tp_flcdoikbvuepwezhdxka_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_9').style.opacity = 1;document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_flcdoikbvuepwezhdxka_ind_9').style.textDecoration = 'none';document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_9').style.opacity = 0;document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"45.17001723402044%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"44.36361202984721%\" y=\"40\" height=\"20\" width=\"0.806405204173231%\" onmouseover=\"document.getElementById('_tp_flcdoikbvuepwezhdxka_ind_14').style.textDecoration = 'underline';document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_14').style.opacity = 1;document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_14').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_flcdoikbvuepwezhdxka_ind_14').style.textDecoration = 'none';document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_14').style.opacity = 0;document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_14').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"45.77853501727609%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"45.17001723402044%\" y=\"40\" height=\"20\" width=\"0.6085177832556496%\" onmouseover=\"document.getElementById('_tp_flcdoikbvuepwezhdxka_ind_13').style.textDecoration = 'underline';document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_13').style.opacity = 1;document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_13').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_flcdoikbvuepwezhdxka_ind_13').style.textDecoration = 'none';document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_13').style.opacity = 0;document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_13').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"46.32720358245865%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"45.77853501727609%\" y=\"40\" height=\"20\" width=\"0.5486685651825596%\" onmouseover=\"document.getElementById('_tp_flcdoikbvuepwezhdxka_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_0').style.opacity = 1;document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_flcdoikbvuepwezhdxka_ind_0').style.textDecoration = 'none';document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_0').style.opacity = 0;document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"46.59621354652081%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"46.32720358245865%\" y=\"40\" height=\"20\" width=\"0.2690099640621568%\" onmouseover=\"document.getElementById('_tp_flcdoikbvuepwezhdxka_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_6').style.opacity = 1;document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_flcdoikbvuepwezhdxka_ind_6').style.textDecoration = 'none';document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_6').style.opacity = 0;document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"46.85978937726853%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"46.59621354652081%\" y=\"40\" height=\"20\" width=\"0.26357583074771895%\" onmouseover=\"document.getElementById('_tp_flcdoikbvuepwezhdxka_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_2').style.opacity = 1;document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_flcdoikbvuepwezhdxka_ind_2').style.textDecoration = 'none';document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_2').style.opacity = 0;document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"47.033131767127244%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"46.85978937726853%\" y=\"40\" height=\"20\" width=\"0.17334238985871764%\" onmouseover=\"document.getElementById('_tp_flcdoikbvuepwezhdxka_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_1').style.opacity = 1;document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_flcdoikbvuepwezhdxka_ind_1').style.textDecoration = 'none';document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_1').style.opacity = 0;document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"47.033131767127244%\" y=\"40\" height=\"20\" width=\"0.025376729950579602%\" onmouseover=\"document.getElementById('_tp_flcdoikbvuepwezhdxka_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_7').style.opacity = 1;document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_flcdoikbvuepwezhdxka_ind_7').style.textDecoration = 'none';document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_7').style.opacity = 0;document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.104 / 2</div\n",
|
|
" ><div id='_tp_flcdoikbvuepwezhdxka_ind_0'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_0').style.opacity = 1; document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_0').style.opacity = 0; document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_0').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.033 / 2</div\n",
|
|
" ><div id='_tp_flcdoikbvuepwezhdxka_ind_1'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_1').style.opacity = 1; document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_1').style.opacity = 0; document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_1').style.opacity = 0;\"\n",
|
|
" >can go </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.05</div\n",
|
|
" ><div id='_tp_flcdoikbvuepwezhdxka_ind_2'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_2').style.opacity = 1; document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_2').style.opacity = 0; document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_2').style.opacity = 0;\"\n",
|
|
" >from </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.403</div\n",
|
|
" ><div id='_tp_flcdoikbvuepwezhdxka_ind_3'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.2038423450188156); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_3').style.opacity = 1; document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_3').style.opacity = 0; document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_3').style.opacity = 0;\"\n",
|
|
" >feeling </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.304</div\n",
|
|
" ><div id='_tp_flcdoikbvuepwezhdxka_ind_4'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03830461477520309); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_4').style.opacity = 1; document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_4').style.opacity = 0; document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_4').style.opacity = 0;\"\n",
|
|
" >so </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.848</div\n",
|
|
" ><div id='_tp_flcdoikbvuepwezhdxka_ind_5'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.2669043374925727); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_5').style.opacity = 1; document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_5').style.opacity = 0; document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_5').style.opacity = 0;\"\n",
|
|
" >hopeless </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.051 / 2</div\n",
|
|
" ><div id='_tp_flcdoikbvuepwezhdxka_ind_6'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_6').style.opacity = 1; document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_6').style.opacity = 0; document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_6').style.opacity = 0;\"\n",
|
|
" >to so </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.005</div\n",
|
|
" ><div id='_tp_flcdoikbvuepwezhdxka_ind_7'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_7').style.opacity = 1; document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_7').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_7').style.opacity = 0; document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_7').style.opacity = 0;\"\n",
|
|
" >damned </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.149</div\n",
|
|
" ><div id='_tp_flcdoikbvuepwezhdxka_ind_8'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.16442859972271748); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_8').style.opacity = 1; document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_8').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_8').style.opacity = 0; document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_8').style.opacity = 0;\"\n",
|
|
" >hopeful </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.193 / 2</div\n",
|
|
" ><div id='_tp_flcdoikbvuepwezhdxka_ind_9'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.022539116656763607); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_9').style.opacity = 1; document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_9').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_9').style.opacity = 0; document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_9').style.opacity = 0;\"\n",
|
|
" >just from </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.067 / 2</div\n",
|
|
" ><div id='_tp_flcdoikbvuepwezhdxka_ind_10'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_10').style.opacity = 1; document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_10').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_10').style.opacity = 0; document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_10').style.opacity = 0;\"\n",
|
|
" >being around </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.35 / 2</div\n",
|
|
" ><div id='_tp_flcdoikbvuepwezhdxka_ind_11'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.04618736383442258); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_11').style.opacity = 1; document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_11').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_11').style.opacity = 0; document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_11').style.opacity = 0;\"\n",
|
|
" >someone who </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.238</div\n",
|
|
" ><div id='_tp_flcdoikbvuepwezhdxka_ind_12'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03042186571598325); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_12').style.opacity = 1; document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_12').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_12').style.opacity = 0; document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_12').style.opacity = 0;\"\n",
|
|
" >cares </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.115</div\n",
|
|
" ><div id='_tp_flcdoikbvuepwezhdxka_ind_13'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_13').style.opacity = 1; document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_13').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_13').style.opacity = 0; document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_13').style.opacity = 0;\"\n",
|
|
" >and </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.153</div\n",
|
|
" ><div id='_tp_flcdoikbvuepwezhdxka_ind_14'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_14').style.opacity = 1; document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_14').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_14').style.opacity = 0; document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_14').style.opacity = 0;\"\n",
|
|
" >is </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.253</div\n",
|
|
" ><div id='_tp_flcdoikbvuepwezhdxka_ind_15'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03042186571598325); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_15').style.opacity = 1; document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_15').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_15').style.opacity = 0; document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_15').style.opacity = 0;\"\n",
|
|
" >awake</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_flcdoikbvuepwezhdxka_ind_16'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_16').style.opacity = 1; document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_16').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_flcdoikbvuepwezhdxka_ind_16').style.opacity = 0; document.getElementById('_fs_flcdoikbvuepwezhdxka_ind_16').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_bgksouvlavqavwefwxrm_output_5_zoom' style='display: none;'><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"46.22167475312993%\" y1=\"33\" x2=\"46.22167475312993%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"46.22167475312993%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-5</text><line x1=\"33.02755384547468%\" y1=\"33\" x2=\"33.02755384547468%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"33.02755384547468%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6</text><line x1=\"19.833432937819424%\" y1=\"33\" x2=\"19.833432937819424%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"19.833432937819424%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7</text><line x1=\"59.41579566078518%\" y1=\"33\" x2=\"59.41579566078518%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"59.41579566078518%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"72.60991656844044%\" y1=\"33\" x2=\"72.60991656844044%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"72.60991656844044%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-3</text><line x1=\"85.80403747609569%\" y1=\"33\" x2=\"85.80403747609569%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"85.80403747609569%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2</text><line x1=\"90.78526836391396%\" y1=\"33\" x2=\"90.78526836391396%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"90.78526836391396%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1.62247</text><text x=\"90.78526836391396%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1.62247</text><text x=\"90.78526836391396%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"9.21473150414481%\" y1=\"33\" x2=\"9.21473150414481%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"9.21473150414481%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7.80481</text><text x=\"9.21473150414481%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7.80481</text><text x=\"9.21473150414481%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">surprise</tspan>(inputs)</text><rect x=\"8.33333332233822%\" width=\"0.8813981818065921%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"8.333335707016408%\" x2=\"9.21473150414481%\" y1=\"60\" y2=\"60\" id=\"_fb_mpqfkjrkrivxhyzzkfvl_ind_10\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.774033605580609%\" y=\"71\" font-size=\"12px\" id=\"_fs_mpqfkjrkrivxhyzzkfvl_ind_10\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.067</text><svg x=\"8.333335707016408%\" y=\"40\" height=\"20\" width=\"0.8813957971284019%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">being around</text> </svg></svg><line x1=\"8.33333332233822%\" x2=\"8.333335707016408%\" y1=\"60\" y2=\"60\" id=\"_fb_mpqfkjrkrivxhyzzkfvl_ind_16\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.333334514677315%\" y=\"71\" font-size=\"12px\" id=\"_fs_mpqfkjrkrivxhyzzkfvl_ind_16\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"8.33333332233822%\" y=\"40\" height=\"20\" width=\"2.3846781882497226e-06%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"8.333335707016408%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.333335707016408%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.333335707016408%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.333335707016408%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.333335707016408%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.333335707016408%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.333335707016408%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.333335707016408%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"9.21473150414481%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.33333332233822%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"9.21473150414481%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.333335707016408%\" y=\"40\" height=\"20\" width=\"0.8813957971284019%\" onmouseover=\"document.getElementById('_tp_mpqfkjrkrivxhyzzkfvl_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_10').style.opacity = 1;document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_mpqfkjrkrivxhyzzkfvl_ind_10').style.textDecoration = 'none';document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_10').style.opacity = 0;document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"8.33333332233822%\" y=\"40\" height=\"20\" width=\"2.3846781882497226e-06%\" onmouseover=\"document.getElementById('_tp_mpqfkjrkrivxhyzzkfvl_ind_16').style.textDecoration = 'underline';document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_16').style.opacity = 1;document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_16').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_mpqfkjrkrivxhyzzkfvl_ind_16').style.textDecoration = 'none';document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_16').style.opacity = 0;document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_16').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"9.21473150414481%\" width=\"82.45193504157574%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"9.21473150414481%\" x2=\"33.60343230813293%\" y1=\"60\" y2=\"60\" id=\"_fb_mpqfkjrkrivxhyzzkfvl_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"21.40908190613887%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_mpqfkjrkrivxhyzzkfvl_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.848</text><svg x=\"9.21473150414481%\" y=\"40\" height=\"20\" width=\"24.388700803988122%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeless</text> </svg></svg><line x1=\"33.60343230813293%\" x2=\"52.11558435327822%\" y1=\"60\" y2=\"60\" id=\"_fb_mpqfkjrkrivxhyzzkfvl_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"42.85950833070558%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_mpqfkjrkrivxhyzzkfvl_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.403</text><svg x=\"33.60343230813293%\" y=\"40\" height=\"20\" width=\"18.512152045145292%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feeling</text> </svg></svg><line x1=\"52.11558435327822%\" x2=\"67.2791378133484%\" y1=\"60\" y2=\"60\" id=\"_fb_mpqfkjrkrivxhyzzkfvl_ind_8\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"59.69736108331331%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_mpqfkjrkrivxhyzzkfvl_ind_8\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.149</text><svg x=\"52.11558435327822%\" y=\"40\" height=\"20\" width=\"15.163553460070176%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">hopeful</text> </svg></svg><line x1=\"67.2791378133484%\" x2=\"71.89928301073923%\" y1=\"60\" y2=\"60\" id=\"_fb_mpqfkjrkrivxhyzzkfvl_ind_11\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"69.58921041204381%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_mpqfkjrkrivxhyzzkfvl_ind_11\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.35</text><svg x=\"67.2791378133484%\" y=\"40\" height=\"20\" width=\"4.620145197390826%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">someone who</text> </svg></svg><line x1=\"71.89928301073923%\" x2=\"75.91490869333632%\" y1=\"60\" y2=\"60\" id=\"_fb_mpqfkjrkrivxhyzzkfvl_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"73.90709585203777%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_mpqfkjrkrivxhyzzkfvl_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.304</text><svg x=\"71.89928301073923%\" y=\"40\" height=\"20\" width=\"4.01562568259709%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">so</text> </svg></svg><line x1=\"75.91490869333632%\" x2=\"79.25141500155452%\" y1=\"60\" y2=\"60\" id=\"_fb_mpqfkjrkrivxhyzzkfvl_ind_15\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"77.58316184744541%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_mpqfkjrkrivxhyzzkfvl_ind_15\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.253</text><svg x=\"75.91490869333632%\" y=\"40\" height=\"20\" width=\"3.3365063082182047%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">awake</text> </svg></svg><line x1=\"79.25141500155452%\" x2=\"82.39156273842391%\" y1=\"60\" y2=\"60\" id=\"_fb_mpqfkjrkrivxhyzzkfvl_ind_12\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"80.82148886998922%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_mpqfkjrkrivxhyzzkfvl_ind_12\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.238</text><svg x=\"79.25141500155452%\" y=\"40\" height=\"20\" width=\"3.1401477368693946%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">cares</text> </svg></svg><line x1=\"82.39156273842391%\" x2=\"84.94143204473937%\" y1=\"60\" y2=\"60\" id=\"_fb_mpqfkjrkrivxhyzzkfvl_ind_9\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"83.66649739158164%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_mpqfkjrkrivxhyzzkfvl_ind_9\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.193</text><svg x=\"82.39156273842391%\" y=\"40\" height=\"20\" width=\"2.5498693063154576%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">just from</text> </svg></svg><line x1=\"84.94143204473937%\" x2=\"86.95385224967946%\" y1=\"60\" y2=\"60\" id=\"_fb_mpqfkjrkrivxhyzzkfvl_ind_14\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"85.94764214720942%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_mpqfkjrkrivxhyzzkfvl_ind_14\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.153</text><svg x=\"84.94143204473937%\" y=\"40\" height=\"20\" width=\"2.012420204940085%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">is</text> </svg></svg><line x1=\"86.95385224967946%\" x2=\"88.47243555711799%\" y1=\"60\" y2=\"60\" id=\"_fb_mpqfkjrkrivxhyzzkfvl_ind_13\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"87.71314390339873%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_mpqfkjrkrivxhyzzkfvl_ind_13\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.115</text><svg x=\"86.95385224967946%\" y=\"40\" height=\"20\" width=\"1.5185833074385329%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">and</text> </svg></svg><line x1=\"88.47243555711799%\" x2=\"89.84166246770188%\" y1=\"60\" y2=\"60\" id=\"_fb_mpqfkjrkrivxhyzzkfvl_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"89.15704901240994%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_mpqfkjrkrivxhyzzkfvl_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.104</text><svg x=\"88.47243555711799%\" y=\"40\" height=\"20\" width=\"1.3692269105838903%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"89.84166246770188%\" x2=\"90.51298884829477%\" y1=\"60\" y2=\"60\" id=\"_fb_mpqfkjrkrivxhyzzkfvl_ind_6\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"90.17732565799832%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_mpqfkjrkrivxhyzzkfvl_ind_6\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.051</text><svg x=\"89.84166246770188%\" y=\"40\" height=\"20\" width=\"0.6713263805928875%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to so</text> </svg></svg><line x1=\"90.51298884829477%\" x2=\"91.17075410648702%\" y1=\"60\" y2=\"60\" id=\"_fb_mpqfkjrkrivxhyzzkfvl_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"90.8418714773909%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_mpqfkjrkrivxhyzzkfvl_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.05</text><svg x=\"90.51298884829477%\" y=\"40\" height=\"20\" width=\"0.6577652581922564%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">from</text> </svg></svg><line x1=\"91.17075410648702%\" x2=\"91.60333778268236%\" y1=\"60\" y2=\"60\" id=\"_fb_mpqfkjrkrivxhyzzkfvl_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.38704594458468%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_mpqfkjrkrivxhyzzkfvl_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.033</text><svg x=\"91.17075410648702%\" y=\"40\" height=\"20\" width=\"0.43258367619533544%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">can go</text> </svg></svg><line x1=\"91.60333778268236%\" x2=\"91.66666654572055%\" y1=\"60\" y2=\"60\" id=\"_fb_mpqfkjrkrivxhyzzkfvl_ind_7\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.63500216420145%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_mpqfkjrkrivxhyzzkfvl_ind_7\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.005</text><svg x=\"91.60333778268236%\" y=\"40\" height=\"20\" width=\"0.0633287630381858%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">damned</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"33.60343230813293%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"33.60343230813293%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"33.60343230813293%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"33.60343230813293%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"33.60343230813293%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"33.60343230813293%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"33.60343230813293%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"33.60343230813293%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"52.11558435327822%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"52.11558435327822%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"52.11558435327822%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"52.11558435327822%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"52.11558435327822%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"52.11558435327822%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"52.11558435327822%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"52.11558435327822%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"67.2791378133484%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"67.2791378133484%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"67.2791378133484%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"67.2791378133484%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"67.2791378133484%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"67.2791378133484%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"67.2791378133484%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"67.2791378133484%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"71.89928301073923%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"71.89928301073923%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"71.89928301073923%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"71.89928301073923%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"71.89928301073923%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"71.89928301073923%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"71.89928301073923%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"71.89928301073923%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"75.91490869333632%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"75.91490869333632%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"75.91490869333632%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"75.91490869333632%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"75.91490869333632%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"75.91490869333632%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"75.91490869333632%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"75.91490869333632%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"79.25141500155452%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"79.25141500155452%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"79.25141500155452%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"79.25141500155452%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"79.25141500155452%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"79.25141500155452%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"79.25141500155452%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"79.25141500155452%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"82.39156273842391%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"82.39156273842391%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"82.39156273842391%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"82.39156273842391%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"82.39156273842391%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"82.39156273842391%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"82.39156273842391%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"82.39156273842391%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"84.94143204473937%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"84.94143204473937%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"84.94143204473937%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"84.94143204473937%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"84.94143204473937%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"84.94143204473937%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"84.94143204473937%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"84.94143204473937%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"86.95385224967946%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"86.95385224967946%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"86.95385224967946%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"86.95385224967946%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"86.95385224967946%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"86.95385224967946%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"86.95385224967946%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"86.95385224967946%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"88.47243555711799%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"88.47243555711799%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"88.47243555711799%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"88.47243555711799%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"88.47243555711799%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"88.47243555711799%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"88.47243555711799%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"88.47243555711799%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"89.84166246770188%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"89.84166246770188%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"89.84166246770188%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"89.84166246770188%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"89.84166246770188%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"89.84166246770188%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"89.84166246770188%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"89.84166246770188%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"90.51298884829477%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.51298884829477%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.51298884829477%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.51298884829477%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.51298884829477%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.51298884829477%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.51298884829477%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.51298884829477%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.17075410648702%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.17075410648702%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.17075410648702%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.17075410648702%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.17075410648702%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.17075410648702%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.17075410648702%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.17075410648702%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.60333778268236%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.60333778268236%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.60333778268236%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.60333778268236%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.60333778268236%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.60333778268236%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.60333778268236%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.60333778268236%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"9.21473150414481%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66666654572055%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"33.60343230813293%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"9.21473150414481%\" y=\"40\" height=\"20\" width=\"24.388700803988122%\" onmouseover=\"document.getElementById('_tp_mpqfkjrkrivxhyzzkfvl_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_5').style.opacity = 1;document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_mpqfkjrkrivxhyzzkfvl_ind_5').style.textDecoration = 'none';document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_5').style.opacity = 0;document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"52.11558435327822%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"33.60343230813293%\" y=\"40\" height=\"20\" width=\"18.512152045145292%\" onmouseover=\"document.getElementById('_tp_mpqfkjrkrivxhyzzkfvl_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_3').style.opacity = 1;document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_mpqfkjrkrivxhyzzkfvl_ind_3').style.textDecoration = 'none';document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_3').style.opacity = 0;document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"67.2791378133484%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"52.11558435327822%\" y=\"40\" height=\"20\" width=\"15.163553460070176%\" onmouseover=\"document.getElementById('_tp_mpqfkjrkrivxhyzzkfvl_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_8').style.opacity = 1;document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_mpqfkjrkrivxhyzzkfvl_ind_8').style.textDecoration = 'none';document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_8').style.opacity = 0;document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"71.89928301073923%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"67.2791378133484%\" y=\"40\" height=\"20\" width=\"4.620145197390826%\" onmouseover=\"document.getElementById('_tp_mpqfkjrkrivxhyzzkfvl_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_11').style.opacity = 1;document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_mpqfkjrkrivxhyzzkfvl_ind_11').style.textDecoration = 'none';document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_11').style.opacity = 0;document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"75.91490869333632%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"71.89928301073923%\" y=\"40\" height=\"20\" width=\"4.01562568259709%\" onmouseover=\"document.getElementById('_tp_mpqfkjrkrivxhyzzkfvl_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_4').style.opacity = 1;document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_mpqfkjrkrivxhyzzkfvl_ind_4').style.textDecoration = 'none';document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_4').style.opacity = 0;document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"79.25141500155452%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"75.91490869333632%\" y=\"40\" height=\"20\" width=\"3.3365063082182047%\" onmouseover=\"document.getElementById('_tp_mpqfkjrkrivxhyzzkfvl_ind_15').style.textDecoration = 'underline';document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_15').style.opacity = 1;document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_15').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_mpqfkjrkrivxhyzzkfvl_ind_15').style.textDecoration = 'none';document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_15').style.opacity = 0;document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_15').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"82.39156273842391%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"79.25141500155452%\" y=\"40\" height=\"20\" width=\"3.1401477368693946%\" onmouseover=\"document.getElementById('_tp_mpqfkjrkrivxhyzzkfvl_ind_12').style.textDecoration = 'underline';document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_12').style.opacity = 1;document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_12').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_mpqfkjrkrivxhyzzkfvl_ind_12').style.textDecoration = 'none';document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_12').style.opacity = 0;document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_12').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"84.94143204473937%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"82.39156273842391%\" y=\"40\" height=\"20\" width=\"2.5498693063154576%\" onmouseover=\"document.getElementById('_tp_mpqfkjrkrivxhyzzkfvl_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_9').style.opacity = 1;document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_mpqfkjrkrivxhyzzkfvl_ind_9').style.textDecoration = 'none';document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_9').style.opacity = 0;document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"86.95385224967946%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"84.94143204473937%\" y=\"40\" height=\"20\" width=\"2.012420204940085%\" onmouseover=\"document.getElementById('_tp_mpqfkjrkrivxhyzzkfvl_ind_14').style.textDecoration = 'underline';document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_14').style.opacity = 1;document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_14').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_mpqfkjrkrivxhyzzkfvl_ind_14').style.textDecoration = 'none';document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_14').style.opacity = 0;document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_14').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"88.47243555711799%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"86.95385224967946%\" y=\"40\" height=\"20\" width=\"1.5185833074385329%\" onmouseover=\"document.getElementById('_tp_mpqfkjrkrivxhyzzkfvl_ind_13').style.textDecoration = 'underline';document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_13').style.opacity = 1;document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_13').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_mpqfkjrkrivxhyzzkfvl_ind_13').style.textDecoration = 'none';document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_13').style.opacity = 0;document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_13').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"89.84166246770188%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"88.47243555711799%\" y=\"40\" height=\"20\" width=\"1.3692269105838903%\" onmouseover=\"document.getElementById('_tp_mpqfkjrkrivxhyzzkfvl_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_0').style.opacity = 1;document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_mpqfkjrkrivxhyzzkfvl_ind_0').style.textDecoration = 'none';document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_0').style.opacity = 0;document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"90.51298884829477%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"89.84166246770188%\" y=\"40\" height=\"20\" width=\"0.6713263805928875%\" onmouseover=\"document.getElementById('_tp_mpqfkjrkrivxhyzzkfvl_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_6').style.opacity = 1;document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_mpqfkjrkrivxhyzzkfvl_ind_6').style.textDecoration = 'none';document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_6').style.opacity = 0;document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.17075410648702%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"90.51298884829477%\" y=\"40\" height=\"20\" width=\"0.6577652581922564%\" onmouseover=\"document.getElementById('_tp_mpqfkjrkrivxhyzzkfvl_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_2').style.opacity = 1;document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_mpqfkjrkrivxhyzzkfvl_ind_2').style.textDecoration = 'none';document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_2').style.opacity = 0;document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.60333778268236%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.17075410648702%\" y=\"40\" height=\"20\" width=\"0.43258367619533544%\" onmouseover=\"document.getElementById('_tp_mpqfkjrkrivxhyzzkfvl_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_1').style.opacity = 1;document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_mpqfkjrkrivxhyzzkfvl_ind_1').style.textDecoration = 'none';document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_1').style.opacity = 0;document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"91.60333778268236%\" y=\"40\" height=\"20\" width=\"0.0633287630381858%\" onmouseover=\"document.getElementById('_tp_mpqfkjrkrivxhyzzkfvl_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_7').style.opacity = 1;document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_mpqfkjrkrivxhyzzkfvl_ind_7').style.textDecoration = 'none';document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_7').style.opacity = 0;document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.104 / 2</div\n",
|
|
" ><div id='_tp_mpqfkjrkrivxhyzzkfvl_ind_0'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.05407011289364222); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_0').style.opacity = 1; document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_0').style.opacity = 0; document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_0').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.033 / 2</div\n",
|
|
" ><div id='_tp_mpqfkjrkrivxhyzzkfvl_ind_1'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_1').style.opacity = 1; document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_1').style.opacity = 0; document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_1').style.opacity = 0;\"\n",
|
|
" >can go </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.05</div\n",
|
|
" ><div id='_tp_mpqfkjrkrivxhyzzkfvl_ind_2'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.022539116656763607); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_2').style.opacity = 1; document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_2').style.opacity = 0; document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_2').style.opacity = 0;\"\n",
|
|
" >from </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.403</div\n",
|
|
" ><div id='_tp_mpqfkjrkrivxhyzzkfvl_ind_3'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.7635175282234106); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_3').style.opacity = 1; document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_3').style.opacity = 0; document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_3').style.opacity = 0;\"\n",
|
|
" >feeling </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.304</div\n",
|
|
" ><div id='_tp_mpqfkjrkrivxhyzzkfvl_ind_4'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.16442859972271748); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_4').style.opacity = 1; document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_4').style.opacity = 0; document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_4').style.opacity = 0;\"\n",
|
|
" >so </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.848</div\n",
|
|
" ><div id='_tp_mpqfkjrkrivxhyzzkfvl_ind_5'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 1.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_5').style.opacity = 1; document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_5').style.opacity = 0; document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_5').style.opacity = 0;\"\n",
|
|
" >hopeless </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.051 / 2</div\n",
|
|
" ><div id='_tp_mpqfkjrkrivxhyzzkfvl_ind_6'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.022539116656763607); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_6').style.opacity = 1; document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_6').style.opacity = 0; document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_6').style.opacity = 0;\"\n",
|
|
" >to so </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.005</div\n",
|
|
" ><div id='_tp_mpqfkjrkrivxhyzzkfvl_ind_7'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_7').style.opacity = 1; document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_7').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_7').style.opacity = 0; document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_7').style.opacity = 0;\"\n",
|
|
" >damned </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.149</div\n",
|
|
" ><div id='_tp_mpqfkjrkrivxhyzzkfvl_ind_8'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.621628045157457); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_8').style.opacity = 1; document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_8').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_8').style.opacity = 0; document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_8').style.opacity = 0;\"\n",
|
|
" >hopeful </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.193 / 2</div\n",
|
|
" ><div id='_tp_mpqfkjrkrivxhyzzkfvl_ind_9'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.10136660724896014); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_9').style.opacity = 1; document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_9').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_9').style.opacity = 0; document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_9').style.opacity = 0;\"\n",
|
|
" >just from </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.067 / 2</div\n",
|
|
" ><div id='_tp_mpqfkjrkrivxhyzzkfvl_ind_10'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.030421865715983164); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_10').style.opacity = 1; document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_10').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_10').style.opacity = 0; document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_10').style.opacity = 0;\"\n",
|
|
" >being around </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.35 / 2</div\n",
|
|
" ><div id='_tp_mpqfkjrkrivxhyzzkfvl_ind_11'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.1880768469003762); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_11').style.opacity = 1; document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_11').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_11').style.opacity = 0; document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_11').style.opacity = 0;\"\n",
|
|
" >someone who </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.238</div\n",
|
|
" ><div id='_tp_mpqfkjrkrivxhyzzkfvl_ind_12'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.12501485442661905); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_12').style.opacity = 1; document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_12').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_12').style.opacity = 0; document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_12').style.opacity = 0;\"\n",
|
|
" >cares </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.115</div\n",
|
|
" ><div id='_tp_mpqfkjrkrivxhyzzkfvl_ind_13'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.05407011289364222); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_13').style.opacity = 1; document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_13').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_13').style.opacity = 0; document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_13').style.opacity = 0;\"\n",
|
|
" >and </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.153</div\n",
|
|
" ><div id='_tp_mpqfkjrkrivxhyzzkfvl_ind_14'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.07771836007130117); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_14').style.opacity = 1; document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_14').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_14').style.opacity = 0; document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_14').style.opacity = 0;\"\n",
|
|
" >is </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.253</div\n",
|
|
" ><div id='_tp_mpqfkjrkrivxhyzzkfvl_ind_15'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.1328976034858387); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_15').style.opacity = 1; document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_15').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_15').style.opacity = 0; document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_15').style.opacity = 0;\"\n",
|
|
" >awake</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_mpqfkjrkrivxhyzzkfvl_ind_16'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_16').style.opacity = 1; document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_16').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_mpqfkjrkrivxhyzzkfvl_ind_16').style.opacity = 0; document.getElementById('_fs_mpqfkjrkrivxhyzzkfvl_ind_16').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div></div>"
|
|
],
|
|
"text/plain": [
|
|
"<IPython.core.display.HTML object>"
|
|
]
|
|
},
|
|
"metadata": {},
|
|
"output_type": "display_data"
|
|
},
|
|
{
|
|
"data": {
|
|
"text/html": [
|
|
"\n",
|
|
"<br>\n",
|
|
"<hr style=\"height: 1px; background-color: #fff; border: none; margin-top: 18px; margin-bottom: 18px; border-top: 1px dashed #ccc;\"\">\n",
|
|
"<div align=\"center\" style=\"margin-top: -35px;\"><div style=\"display: inline-block; background: #fff; padding: 5px; color: #999; font-family: monospace\">[2]</div>\n",
|
|
"</div>\n",
|
|
" "
|
|
],
|
|
"text/plain": [
|
|
"<IPython.core.display.HTML object>"
|
|
]
|
|
},
|
|
"metadata": {},
|
|
"output_type": "display_data"
|
|
},
|
|
{
|
|
"data": {
|
|
"text/html": [
|
|
"<div align='center'>\n",
|
|
"<script>\n",
|
|
" document._hover_apuwqawtzdakfvbqpgxu = '_tp_apuwqawtzdakfvbqpgxu_output_0';\n",
|
|
" document._zoom_apuwqawtzdakfvbqpgxu = undefined;\n",
|
|
" function _output_onclick_apuwqawtzdakfvbqpgxu(i) {\n",
|
|
" var next_id = undefined;\n",
|
|
" \n",
|
|
" if (document._zoom_apuwqawtzdakfvbqpgxu !== undefined) {\n",
|
|
" document.getElementById(document._zoom_apuwqawtzdakfvbqpgxu+ '_zoom').style.display = 'none';\n",
|
|
" \n",
|
|
" if (document._zoom_apuwqawtzdakfvbqpgxu === '_tp_apuwqawtzdakfvbqpgxu_output_' + i) {\n",
|
|
" document.getElementById(document._zoom_apuwqawtzdakfvbqpgxu).style.display = 'block';\n",
|
|
" document.getElementById(document._zoom_apuwqawtzdakfvbqpgxu+'_name').style.background = '#dddddd';\n",
|
|
" } else {\n",
|
|
" document.getElementById(document._zoom_apuwqawtzdakfvbqpgxu).style.display = 'none';\n",
|
|
" document.getElementById(document._zoom_apuwqawtzdakfvbqpgxu+'_name').style.background = '#ffffff';\n",
|
|
" }\n",
|
|
" }\n",
|
|
" if (document._zoom_apuwqawtzdakfvbqpgxu !== '_tp_apuwqawtzdakfvbqpgxu_output_' + i) {\n",
|
|
" next_id = '_tp_apuwqawtzdakfvbqpgxu_output_' + i;\n",
|
|
" document.getElementById(next_id).style.display = 'none';\n",
|
|
" document.getElementById(next_id + '_zoom').style.display = 'block';\n",
|
|
" document.getElementById(next_id+'_name').style.background = '#bbbbbb';\n",
|
|
" }\n",
|
|
" document._zoom_apuwqawtzdakfvbqpgxu = next_id;\n",
|
|
" }\n",
|
|
" function _output_onmouseover_apuwqawtzdakfvbqpgxu(i, el) {\n",
|
|
" if (document._zoom_apuwqawtzdakfvbqpgxu !== undefined) { return; }\n",
|
|
" if (document._hover_apuwqawtzdakfvbqpgxu !== undefined) {\n",
|
|
" document.getElementById(document._hover_apuwqawtzdakfvbqpgxu + '_name').style.background = '#ffffff';\n",
|
|
" document.getElementById(document._hover_apuwqawtzdakfvbqpgxu).style.display = 'none';\n",
|
|
" }\n",
|
|
" document.getElementById('_tp_apuwqawtzdakfvbqpgxu_output_' + i).style.display = 'block';\n",
|
|
" el.style.background = '#dddddd';\n",
|
|
" document._hover_apuwqawtzdakfvbqpgxu = '_tp_apuwqawtzdakfvbqpgxu_output_' + i;\n",
|
|
" }\n",
|
|
"</script>\n",
|
|
"<div style=\"color: rgb(120,120,120); font-size: 12px;\">outputs</div>\n",
|
|
"<div style=\"display: inline; background: #dddddd; border-radius: 3px; padding: 0px\" id=\"_tp_apuwqawtzdakfvbqpgxu_output_0_name\"\n",
|
|
" onclick=\"_output_onclick_apuwqawtzdakfvbqpgxu(0)\"\n",
|
|
" onmouseover=\"_output_onmouseover_apuwqawtzdakfvbqpgxu(0, this);\">sadness</div>\n",
|
|
"<div style=\"display: inline; background: #ffffff; border-radius: 3px; padding: 0px\" id=\"_tp_apuwqawtzdakfvbqpgxu_output_1_name\"\n",
|
|
" onclick=\"_output_onclick_apuwqawtzdakfvbqpgxu(1)\"\n",
|
|
" onmouseover=\"_output_onmouseover_apuwqawtzdakfvbqpgxu(1, this);\">joy</div>\n",
|
|
"<div style=\"display: inline; background: #ffffff; border-radius: 3px; padding: 0px\" id=\"_tp_apuwqawtzdakfvbqpgxu_output_2_name\"\n",
|
|
" onclick=\"_output_onclick_apuwqawtzdakfvbqpgxu(2)\"\n",
|
|
" onmouseover=\"_output_onmouseover_apuwqawtzdakfvbqpgxu(2, this);\">love</div>\n",
|
|
"<div style=\"display: inline; background: #ffffff; border-radius: 3px; padding: 0px\" id=\"_tp_apuwqawtzdakfvbqpgxu_output_3_name\"\n",
|
|
" onclick=\"_output_onclick_apuwqawtzdakfvbqpgxu(3)\"\n",
|
|
" onmouseover=\"_output_onmouseover_apuwqawtzdakfvbqpgxu(3, this);\">anger</div>\n",
|
|
"<div style=\"display: inline; background: #ffffff; border-radius: 3px; padding: 0px\" id=\"_tp_apuwqawtzdakfvbqpgxu_output_4_name\"\n",
|
|
" onclick=\"_output_onclick_apuwqawtzdakfvbqpgxu(4)\"\n",
|
|
" onmouseover=\"_output_onmouseover_apuwqawtzdakfvbqpgxu(4, this);\">fear</div>\n",
|
|
"<div style=\"display: inline; background: #ffffff; border-radius: 3px; padding: 0px\" id=\"_tp_apuwqawtzdakfvbqpgxu_output_5_name\"\n",
|
|
" onclick=\"_output_onclick_apuwqawtzdakfvbqpgxu(5)\"\n",
|
|
" onmouseover=\"_output_onmouseover_apuwqawtzdakfvbqpgxu(5, this);\">surprise</div><br><br><div id='_tp_apuwqawtzdakfvbqpgxu_output_0' style='display: block';><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"49.99634084343776%\" y1=\"33\" x2=\"49.99634084343776%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"49.99634084343776%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1</text><line x1=\"34.135128947971666%\" y1=\"33\" x2=\"34.135128947971666%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"34.135128947971666%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"18.273917052505578%\" y1=\"33\" x2=\"18.273917052505578%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"18.273917052505578%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7</text><line x1=\"65.85755273890385%\" y1=\"33\" x2=\"65.85755273890385%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"65.85755273890385%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">2</text><line x1=\"81.71876463436993%\" y1=\"33\" x2=\"81.71876463436993%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"81.71876463436993%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">5</text><line x1=\"46.21991778674205%\" y1=\"33\" x2=\"46.21991778674205%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"46.21991778674205%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1.71428</text><text x=\"46.21991778674205%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1.71428</text><text x=\"46.21991778674205%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"23.124753865742303%\" y1=\"33\" x2=\"23.124753865742303%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"23.124753865742303%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.08251</text><text x=\"23.124753865742303%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.08251</text><text x=\"23.124753865742303%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">sadness</tspan>(inputs)</text><rect x=\"21.956612391401997%\" width=\"1.1681414743403078%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"22.005674132705618%\" x2=\"23.124753865742303%\" y1=\"60\" y2=\"60\" id=\"_fb_dzujaskwxevjtoamcfxu_ind_10\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"22.56521399922396%\" y=\"71\" font-size=\"12px\" id=\"_fs_dzujaskwxevjtoamcfxu_ind_10\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.212</text><svg x=\"22.005674132705618%\" y=\"40\" height=\"20\" width=\"1.1190797330366848%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">wrong</text> </svg></svg><line x1=\"21.95661316762685%\" x2=\"22.005674132705618%\" y1=\"60\" y2=\"60\" id=\"_fb_dzujaskwxevjtoamcfxu_ind_6\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"21.98114365016623%\" y=\"71\" font-size=\"12px\" id=\"_fs_dzujaskwxevjtoamcfxu_ind_6\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.009</text><svg x=\"21.95661316762685%\" y=\"40\" height=\"20\" width=\"0.04906096507876967%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">post</text> </svg></svg><line x1=\"21.95661266230003%\" x2=\"21.95661316762685%\" y1=\"60\" y2=\"60\" id=\"_fb_dzujaskwxevjtoamcfxu_ind_0\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"21.95661291496344%\" y=\"71\" font-size=\"12px\" id=\"_fs_dzujaskwxevjtoamcfxu_ind_0\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"21.95661266230003%\" y=\"40\" height=\"20\" width=\"5.053268168353497e-07%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><line x1=\"21.956612391402%\" x2=\"21.95661266230003%\" y1=\"60\" y2=\"60\" id=\"_fb_dzujaskwxevjtoamcfxu_ind_11\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"21.956612526851018%\" y=\"71\" font-size=\"12px\" id=\"_fs_dzujaskwxevjtoamcfxu_ind_11\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"21.956612391402%\" y=\"40\" height=\"20\" width=\"2.7089803111834954e-07%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"22.005674132705618%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"22.005674132705618%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"22.005674132705618%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"22.005674132705618%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"22.005674132705618%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"22.005674132705618%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"22.005674132705618%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"22.005674132705618%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"21.95661316762685%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"21.95661316762685%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"21.95661316762685%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"21.95661316762685%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"21.95661316762685%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"21.95661316762685%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"21.95661316762685%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"21.95661316762685%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"21.95661266230003%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"21.95661266230003%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"21.95661266230003%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"21.95661266230003%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"21.95661266230003%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"21.95661266230003%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"21.95661266230003%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"21.95661266230003%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"23.124753865742303%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"21.956612391401997%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"23.124753865742303%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"22.005674132705618%\" y=\"40\" height=\"20\" width=\"1.1190797330366848%\" onmouseover=\"document.getElementById('_tp_dzujaskwxevjtoamcfxu_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_dzujaskwxevjtoamcfxu_ind_10').style.opacity = 1;document.getElementById('_fb_dzujaskwxevjtoamcfxu_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dzujaskwxevjtoamcfxu_ind_10').style.textDecoration = 'none';document.getElementById('_fs_dzujaskwxevjtoamcfxu_ind_10').style.opacity = 0;document.getElementById('_fb_dzujaskwxevjtoamcfxu_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"22.005674132705618%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"21.95661316762685%\" y=\"40\" height=\"20\" width=\"0.04906096507876967%\" onmouseover=\"document.getElementById('_tp_dzujaskwxevjtoamcfxu_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_dzujaskwxevjtoamcfxu_ind_6').style.opacity = 1;document.getElementById('_fb_dzujaskwxevjtoamcfxu_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dzujaskwxevjtoamcfxu_ind_6').style.textDecoration = 'none';document.getElementById('_fs_dzujaskwxevjtoamcfxu_ind_6').style.opacity = 0;document.getElementById('_fb_dzujaskwxevjtoamcfxu_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"21.95661316762685%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"21.95661266230003%\" y=\"40\" height=\"20\" width=\"5.053268168353497e-07%\" onmouseover=\"document.getElementById('_tp_dzujaskwxevjtoamcfxu_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_dzujaskwxevjtoamcfxu_ind_0').style.opacity = 1;document.getElementById('_fb_dzujaskwxevjtoamcfxu_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dzujaskwxevjtoamcfxu_ind_0').style.textDecoration = 'none';document.getElementById('_fs_dzujaskwxevjtoamcfxu_ind_0').style.opacity = 0;document.getElementById('_fb_dzujaskwxevjtoamcfxu_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"21.956612391402%\" y=\"40\" height=\"20\" width=\"2.7089803111834954e-07%\" onmouseover=\"document.getElementById('_tp_dzujaskwxevjtoamcfxu_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_dzujaskwxevjtoamcfxu_ind_11').style.opacity = 1;document.getElementById('_fb_dzujaskwxevjtoamcfxu_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dzujaskwxevjtoamcfxu_ind_11').style.textDecoration = 'none';document.getElementById('_fs_dzujaskwxevjtoamcfxu_ind_11').style.opacity = 0;document.getElementById('_fb_dzujaskwxevjtoamcfxu_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"23.124753865742303%\" width=\"24.263305395340055%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"23.124753865742303%\" x2=\"39.90445120595504%\" y1=\"60\" y2=\"60\" id=\"_fb_dzujaskwxevjtoamcfxu_ind_9\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"31.514602535848674%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dzujaskwxevjtoamcfxu_ind_9\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-3.174</text><svg x=\"23.124753865742303%\" y=\"40\" height=\"20\" width=\"16.77969734021274%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">greedy</text> </svg></svg><line x1=\"39.90445120595504%\" x2=\"42.6936877153034%\" y1=\"60\" y2=\"60\" id=\"_fb_dzujaskwxevjtoamcfxu_ind_8\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"41.29906946062922%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dzujaskwxevjtoamcfxu_ind_8\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.528</text><svg x=\"39.90445120595504%\" y=\"40\" height=\"20\" width=\"2.789236509348356%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"42.6936877153034%\" x2=\"45.43171849603672%\" y1=\"60\" y2=\"60\" id=\"_fb_dzujaskwxevjtoamcfxu_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"44.06270310567006%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dzujaskwxevjtoamcfxu_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.518</text><svg x=\"42.6936877153034%\" y=\"40\" height=\"20\" width=\"2.7380307807333253%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">grabbing</text> </svg></svg><line x1=\"45.43171849603672%\" x2=\"46.23445516969347%\" y1=\"60\" y2=\"60\" id=\"_fb_dzujaskwxevjtoamcfxu_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"45.83308683286509%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dzujaskwxevjtoamcfxu_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.152</text><svg x=\"45.43171849603672%\" y=\"40\" height=\"20\" width=\"0.8027366736567458%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">im</text> </svg></svg><line x1=\"46.23445516969347%\" x2=\"46.92521231169926%\" y1=\"60\" y2=\"60\" id=\"_fb_dzujaskwxevjtoamcfxu_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"46.579833740696365%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dzujaskwxevjtoamcfxu_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.131</text><svg x=\"46.23445516969347%\" y=\"40\" height=\"20\" width=\"0.6907571420057934%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">a</text> </svg></svg><line x1=\"46.92521231169926%\" x2=\"47.279406144748044%\" y1=\"60\" y2=\"60\" id=\"_fb_dzujaskwxevjtoamcfxu_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"47.10230922822365%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dzujaskwxevjtoamcfxu_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.067</text><svg x=\"46.92521231169926%\" y=\"40\" height=\"20\" width=\"0.3541938330487824%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><line x1=\"47.279406144748044%\" x2=\"47.38610872184863%\" y1=\"60\" y2=\"60\" id=\"_fb_dzujaskwxevjtoamcfxu_ind_7\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"47.33275743329834%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dzujaskwxevjtoamcfxu_ind_7\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.02</text><svg x=\"47.279406144748044%\" y=\"40\" height=\"20\" width=\"0.1067025771005845%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"47.38610872184863%\" x2=\"47.38805926108236%\" y1=\"60\" y2=\"60\" id=\"_fb_dzujaskwxevjtoamcfxu_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"47.387083991465495%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dzujaskwxevjtoamcfxu_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"47.38610872184863%\" y=\"40\" height=\"20\" width=\"0.0019505392337322291%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">minute</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"39.90445120595504%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"39.90445120595504%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"39.90445120595504%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"39.90445120595504%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"39.90445120595504%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"39.90445120595504%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"39.90445120595504%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"39.90445120595504%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"42.6936877153034%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"42.6936877153034%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"42.6936877153034%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"42.6936877153034%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"42.6936877153034%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"42.6936877153034%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"42.6936877153034%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"42.6936877153034%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"45.43171849603672%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"45.43171849603672%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"45.43171849603672%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"45.43171849603672%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"45.43171849603672%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"45.43171849603672%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"45.43171849603672%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"45.43171849603672%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"46.23445516969347%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"46.23445516969347%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"46.23445516969347%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"46.23445516969347%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"46.23445516969347%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"46.23445516969347%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"46.23445516969347%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"46.23445516969347%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"46.92521231169926%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"46.92521231169926%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"46.92521231169926%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"46.92521231169926%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"46.92521231169926%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"46.92521231169926%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"46.92521231169926%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"46.92521231169926%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"47.279406144748044%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"47.279406144748044%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"47.279406144748044%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"47.279406144748044%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"47.279406144748044%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"47.279406144748044%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"47.279406144748044%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"47.279406144748044%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"47.38610872184863%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"47.38610872184863%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"47.38610872184863%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"47.38610872184863%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"47.38610872184863%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"47.38610872184863%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"47.38610872184863%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"47.38610872184863%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"23.124753865742303%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"47.388059261082354%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"39.90445120595504%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"23.124753865742303%\" y=\"40\" height=\"20\" width=\"16.77969734021274%\" onmouseover=\"document.getElementById('_tp_dzujaskwxevjtoamcfxu_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_dzujaskwxevjtoamcfxu_ind_9').style.opacity = 1;document.getElementById('_fb_dzujaskwxevjtoamcfxu_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dzujaskwxevjtoamcfxu_ind_9').style.textDecoration = 'none';document.getElementById('_fs_dzujaskwxevjtoamcfxu_ind_9').style.opacity = 0;document.getElementById('_fb_dzujaskwxevjtoamcfxu_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"42.6936877153034%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"39.90445120595504%\" y=\"40\" height=\"20\" width=\"2.789236509348356%\" onmouseover=\"document.getElementById('_tp_dzujaskwxevjtoamcfxu_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_dzujaskwxevjtoamcfxu_ind_8').style.opacity = 1;document.getElementById('_fb_dzujaskwxevjtoamcfxu_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dzujaskwxevjtoamcfxu_ind_8').style.textDecoration = 'none';document.getElementById('_fs_dzujaskwxevjtoamcfxu_ind_8').style.opacity = 0;document.getElementById('_fb_dzujaskwxevjtoamcfxu_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"45.43171849603672%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"42.6936877153034%\" y=\"40\" height=\"20\" width=\"2.7380307807333253%\" onmouseover=\"document.getElementById('_tp_dzujaskwxevjtoamcfxu_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_dzujaskwxevjtoamcfxu_ind_2').style.opacity = 1;document.getElementById('_fb_dzujaskwxevjtoamcfxu_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dzujaskwxevjtoamcfxu_ind_2').style.textDecoration = 'none';document.getElementById('_fs_dzujaskwxevjtoamcfxu_ind_2').style.opacity = 0;document.getElementById('_fb_dzujaskwxevjtoamcfxu_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"46.23445516969347%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"45.43171849603672%\" y=\"40\" height=\"20\" width=\"0.8027366736567458%\" onmouseover=\"document.getElementById('_tp_dzujaskwxevjtoamcfxu_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_dzujaskwxevjtoamcfxu_ind_1').style.opacity = 1;document.getElementById('_fb_dzujaskwxevjtoamcfxu_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dzujaskwxevjtoamcfxu_ind_1').style.textDecoration = 'none';document.getElementById('_fs_dzujaskwxevjtoamcfxu_ind_1').style.opacity = 0;document.getElementById('_fb_dzujaskwxevjtoamcfxu_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"46.92521231169926%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"46.23445516969347%\" y=\"40\" height=\"20\" width=\"0.6907571420057934%\" onmouseover=\"document.getElementById('_tp_dzujaskwxevjtoamcfxu_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_dzujaskwxevjtoamcfxu_ind_3').style.opacity = 1;document.getElementById('_fb_dzujaskwxevjtoamcfxu_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dzujaskwxevjtoamcfxu_ind_3').style.textDecoration = 'none';document.getElementById('_fs_dzujaskwxevjtoamcfxu_ind_3').style.opacity = 0;document.getElementById('_fb_dzujaskwxevjtoamcfxu_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"47.279406144748044%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"46.92521231169926%\" y=\"40\" height=\"20\" width=\"0.3541938330487824%\" onmouseover=\"document.getElementById('_tp_dzujaskwxevjtoamcfxu_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_dzujaskwxevjtoamcfxu_ind_5').style.opacity = 1;document.getElementById('_fb_dzujaskwxevjtoamcfxu_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dzujaskwxevjtoamcfxu_ind_5').style.textDecoration = 'none';document.getElementById('_fs_dzujaskwxevjtoamcfxu_ind_5').style.opacity = 0;document.getElementById('_fb_dzujaskwxevjtoamcfxu_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"47.38610872184863%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"47.279406144748044%\" y=\"40\" height=\"20\" width=\"0.1067025771005845%\" onmouseover=\"document.getElementById('_tp_dzujaskwxevjtoamcfxu_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_dzujaskwxevjtoamcfxu_ind_7').style.opacity = 1;document.getElementById('_fb_dzujaskwxevjtoamcfxu_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dzujaskwxevjtoamcfxu_ind_7').style.textDecoration = 'none';document.getElementById('_fs_dzujaskwxevjtoamcfxu_ind_7').style.opacity = 0;document.getElementById('_fb_dzujaskwxevjtoamcfxu_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"47.38610872184863%\" y=\"40\" height=\"20\" width=\"0.0019505392337322291%\" onmouseover=\"document.getElementById('_tp_dzujaskwxevjtoamcfxu_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_dzujaskwxevjtoamcfxu_ind_4').style.opacity = 1;document.getElementById('_fb_dzujaskwxevjtoamcfxu_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dzujaskwxevjtoamcfxu_ind_4').style.textDecoration = 'none';document.getElementById('_fs_dzujaskwxevjtoamcfxu_ind_4').style.opacity = 0;document.getElementById('_fb_dzujaskwxevjtoamcfxu_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_dzujaskwxevjtoamcfxu_ind_0'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dzujaskwxevjtoamcfxu_ind_0').style.opacity = 1; document.getElementById('_fs_dzujaskwxevjtoamcfxu_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dzujaskwxevjtoamcfxu_ind_0').style.opacity = 0; document.getElementById('_fs_dzujaskwxevjtoamcfxu_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.152</div\n",
|
|
" ><div id='_tp_dzujaskwxevjtoamcfxu_ind_1'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dzujaskwxevjtoamcfxu_ind_1').style.opacity = 1; document.getElementById('_fs_dzujaskwxevjtoamcfxu_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dzujaskwxevjtoamcfxu_ind_1').style.opacity = 0; document.getElementById('_fs_dzujaskwxevjtoamcfxu_ind_1').style.opacity = 0;\"\n",
|
|
" >im </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.518</div\n",
|
|
" ><div id='_tp_dzujaskwxevjtoamcfxu_ind_2'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.06983561101208147); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dzujaskwxevjtoamcfxu_ind_2').style.opacity = 1; document.getElementById('_fs_dzujaskwxevjtoamcfxu_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dzujaskwxevjtoamcfxu_ind_2').style.opacity = 0; document.getElementById('_fs_dzujaskwxevjtoamcfxu_ind_2').style.opacity = 0;\"\n",
|
|
" >grabbing </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.131</div\n",
|
|
" ><div id='_tp_dzujaskwxevjtoamcfxu_ind_3'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dzujaskwxevjtoamcfxu_ind_3').style.opacity = 1; document.getElementById('_fs_dzujaskwxevjtoamcfxu_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dzujaskwxevjtoamcfxu_ind_3').style.opacity = 0; document.getElementById('_fs_dzujaskwxevjtoamcfxu_ind_3').style.opacity = 0;\"\n",
|
|
" >a </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_dzujaskwxevjtoamcfxu_ind_4'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dzujaskwxevjtoamcfxu_ind_4').style.opacity = 1; document.getElementById('_fs_dzujaskwxevjtoamcfxu_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dzujaskwxevjtoamcfxu_ind_4').style.opacity = 0; document.getElementById('_fs_dzujaskwxevjtoamcfxu_ind_4').style.opacity = 0;\"\n",
|
|
" >minute </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.067</div\n",
|
|
" ><div id='_tp_dzujaskwxevjtoamcfxu_ind_5'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dzujaskwxevjtoamcfxu_ind_5').style.opacity = 1; document.getElementById('_fs_dzujaskwxevjtoamcfxu_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dzujaskwxevjtoamcfxu_ind_5').style.opacity = 0; document.getElementById('_fs_dzujaskwxevjtoamcfxu_ind_5').style.opacity = 0;\"\n",
|
|
" >to </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.009</div\n",
|
|
" ><div id='_tp_dzujaskwxevjtoamcfxu_ind_6'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dzujaskwxevjtoamcfxu_ind_6').style.opacity = 1; document.getElementById('_fs_dzujaskwxevjtoamcfxu_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dzujaskwxevjtoamcfxu_ind_6').style.opacity = 0; document.getElementById('_fs_dzujaskwxevjtoamcfxu_ind_6').style.opacity = 0;\"\n",
|
|
" >post </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.02</div\n",
|
|
" ><div id='_tp_dzujaskwxevjtoamcfxu_ind_7'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dzujaskwxevjtoamcfxu_ind_7').style.opacity = 1; document.getElementById('_fs_dzujaskwxevjtoamcfxu_ind_7').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dzujaskwxevjtoamcfxu_ind_7').style.opacity = 0; document.getElementById('_fs_dzujaskwxevjtoamcfxu_ind_7').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.528</div\n",
|
|
" ><div id='_tp_dzujaskwxevjtoamcfxu_ind_8'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.06983561101208147); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dzujaskwxevjtoamcfxu_ind_8').style.opacity = 1; document.getElementById('_fs_dzujaskwxevjtoamcfxu_ind_8').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dzujaskwxevjtoamcfxu_ind_8').style.opacity = 0; document.getElementById('_fs_dzujaskwxevjtoamcfxu_ind_8').style.opacity = 0;\"\n",
|
|
" >feel </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-3.174</div\n",
|
|
" ><div id='_tp_dzujaskwxevjtoamcfxu_ind_9'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.4560903149138443); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dzujaskwxevjtoamcfxu_ind_9').style.opacity = 1; document.getElementById('_fs_dzujaskwxevjtoamcfxu_ind_9').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dzujaskwxevjtoamcfxu_ind_9').style.opacity = 0; document.getElementById('_fs_dzujaskwxevjtoamcfxu_ind_9').style.opacity = 0;\"\n",
|
|
" >greedy </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.212</div\n",
|
|
" ><div id='_tp_dzujaskwxevjtoamcfxu_ind_10'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.02253911665676371); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dzujaskwxevjtoamcfxu_ind_10').style.opacity = 1; document.getElementById('_fs_dzujaskwxevjtoamcfxu_ind_10').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dzujaskwxevjtoamcfxu_ind_10').style.opacity = 0; document.getElementById('_fs_dzujaskwxevjtoamcfxu_ind_10').style.opacity = 0;\"\n",
|
|
" >wrong</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_dzujaskwxevjtoamcfxu_ind_11'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dzujaskwxevjtoamcfxu_ind_11').style.opacity = 1; document.getElementById('_fs_dzujaskwxevjtoamcfxu_ind_11').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dzujaskwxevjtoamcfxu_ind_11').style.opacity = 0; document.getElementById('_fs_dzujaskwxevjtoamcfxu_ind_11').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_apuwqawtzdakfvbqpgxu_output_0_zoom' style='display: none;'><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"48.23968953828433%\" y1=\"33\" x2=\"48.23968953828433%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"48.23968953828433%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"30.91510628460893%\" y1=\"33\" x2=\"30.91510628460893%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"30.91510628460893%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-5</text><line x1=\"13.590523030933532%\" y1=\"33\" x2=\"13.590523030933532%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"13.590523030933532%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6</text><line x1=\"65.56427279195974%\" y1=\"33\" x2=\"65.56427279195974%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"65.56427279195974%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-3</text><line x1=\"82.88885604563514%\" y1=\"33\" x2=\"82.88885604563514%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"82.88885604563514%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2</text><line x1=\"87.83892036380742%\" y1=\"33\" x2=\"87.83892036380742%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"87.83892036380742%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1.71428</text><text x=\"87.83892036380742%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1.71428</text><text x=\"87.83892036380742%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"12.161079462946752%\" y1=\"33\" x2=\"12.161079462946752%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"12.161079462946752%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.08251</text><text x=\"12.161079462946752%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.08251</text><text x=\"12.161079462946752%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">sadness</tspan>(inputs)</text><rect x=\"8.33333331889618%\" width=\"3.82774614405057%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"8.49409799956245%\" x2=\"12.161079462946752%\" y1=\"60\" y2=\"60\" id=\"_fb_gysfvydwwqlgwayjtgtc_ind_10\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"10.3275887312546%\" y=\"71\" font-size=\"12px\" id=\"_fs_gysfvydwwqlgwayjtgtc_ind_10\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.212</text><svg x=\"8.49409799956245%\" y=\"40\" height=\"20\" width=\"3.6669814633843014%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">wrong</text> </svg></svg><line x1=\"8.333335862416599%\" x2=\"8.49409799956245%\" y1=\"60\" y2=\"60\" id=\"_fb_gysfvydwwqlgwayjtgtc_ind_6\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.413716930989525%\" y=\"71\" font-size=\"12px\" id=\"_fs_gysfvydwwqlgwayjtgtc_ind_6\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.009</text><svg x=\"8.333335862416599%\" y=\"40\" height=\"20\" width=\"0.16076213714585208%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">post</text> </svg></svg><line x1=\"8.333334206570262%\" x2=\"8.333335862416599%\" y1=\"60\" y2=\"60\" id=\"_fb_gysfvydwwqlgwayjtgtc_ind_0\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.33333503449343%\" y=\"71\" font-size=\"12px\" id=\"_fs_gysfvydwwqlgwayjtgtc_ind_0\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"8.333334206570262%\" y=\"40\" height=\"20\" width=\"1.6558463364901854e-06%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><line x1=\"8.333333318896196%\" x2=\"8.333334206570262%\" y1=\"60\" y2=\"60\" id=\"_fb_gysfvydwwqlgwayjtgtc_ind_11\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.33333376273323%\" y=\"71\" font-size=\"12px\" id=\"_fs_gysfvydwwqlgwayjtgtc_ind_11\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"8.333333318896196%\" y=\"40\" height=\"20\" width=\"8.876740658081417e-07%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"8.49409799956245%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.49409799956245%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.49409799956245%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.49409799956245%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.49409799956245%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.49409799956245%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.49409799956245%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.49409799956245%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.333335862416599%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.333335862416599%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.333335862416599%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.333335862416599%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.333335862416599%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.333335862416599%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.333335862416599%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.333335862416599%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.333334206570262%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.333334206570262%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.333334206570262%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.333334206570262%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.333334206570262%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.333334206570262%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.333334206570262%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.333334206570262%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"12.161079462946752%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.33333331889618%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"12.161079462946752%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.49409799956245%\" y=\"40\" height=\"20\" width=\"3.6669814633843014%\" onmouseover=\"document.getElementById('_tp_gysfvydwwqlgwayjtgtc_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_gysfvydwwqlgwayjtgtc_ind_10').style.opacity = 1;document.getElementById('_fb_gysfvydwwqlgwayjtgtc_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gysfvydwwqlgwayjtgtc_ind_10').style.textDecoration = 'none';document.getElementById('_fs_gysfvydwwqlgwayjtgtc_ind_10').style.opacity = 0;document.getElementById('_fb_gysfvydwwqlgwayjtgtc_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"8.49409799956245%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.333335862416599%\" y=\"40\" height=\"20\" width=\"0.16076213714585208%\" onmouseover=\"document.getElementById('_tp_gysfvydwwqlgwayjtgtc_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_gysfvydwwqlgwayjtgtc_ind_6').style.opacity = 1;document.getElementById('_fb_gysfvydwwqlgwayjtgtc_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gysfvydwwqlgwayjtgtc_ind_6').style.textDecoration = 'none';document.getElementById('_fs_gysfvydwwqlgwayjtgtc_ind_6').style.opacity = 0;document.getElementById('_fb_gysfvydwwqlgwayjtgtc_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"8.333335862416599%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.333334206570262%\" y=\"40\" height=\"20\" width=\"1.6558463364901854e-06%\" onmouseover=\"document.getElementById('_tp_gysfvydwwqlgwayjtgtc_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_gysfvydwwqlgwayjtgtc_ind_0').style.opacity = 1;document.getElementById('_fb_gysfvydwwqlgwayjtgtc_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gysfvydwwqlgwayjtgtc_ind_0').style.textDecoration = 'none';document.getElementById('_fs_gysfvydwwqlgwayjtgtc_ind_0').style.opacity = 0;document.getElementById('_fb_gysfvydwwqlgwayjtgtc_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"8.333333318896196%\" y=\"40\" height=\"20\" width=\"8.876740658081417e-07%\" onmouseover=\"document.getElementById('_tp_gysfvydwwqlgwayjtgtc_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_gysfvydwwqlgwayjtgtc_ind_11').style.opacity = 1;document.getElementById('_fb_gysfvydwwqlgwayjtgtc_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gysfvydwwqlgwayjtgtc_ind_11').style.textDecoration = 'none';document.getElementById('_fs_gysfvydwwqlgwayjtgtc_ind_11').style.opacity = 0;document.getElementById('_fb_gysfvydwwqlgwayjtgtc_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"12.161079462946752%\" width=\"79.50558704491124%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"12.161079462946752%\" x2=\"67.14450673027073%\" y1=\"60\" y2=\"60\" id=\"_fb_gysfvydwwqlgwayjtgtc_ind_9\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"39.65279309660875%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_gysfvydwwqlgwayjtgtc_ind_9\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-3.174</text><svg x=\"12.161079462946752%\" y=\"40\" height=\"20\" width=\"54.98342726732398%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">greedy</text> </svg></svg><line x1=\"67.14450673027073%\" x2=\"76.28422955325557%\" y1=\"60\" y2=\"60\" id=\"_fb_gysfvydwwqlgwayjtgtc_ind_8\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"71.71436814176315%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_gysfvydwwqlgwayjtgtc_ind_8\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.528</text><svg x=\"67.14450673027073%\" y=\"40\" height=\"20\" width=\"9.139722822984837%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"76.28422955325557%\" x2=\"85.25616231436435%\" y1=\"60\" y2=\"60\" id=\"_fb_gysfvydwwqlgwayjtgtc_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"80.77019593380996%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_gysfvydwwqlgwayjtgtc_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.518</text><svg x=\"76.28422955325557%\" y=\"40\" height=\"20\" width=\"8.971932761108775%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">grabbing</text> </svg></svg><line x1=\"85.25616231436435%\" x2=\"87.88655621336778%\" y1=\"60\" y2=\"60\" id=\"_fb_gysfvydwwqlgwayjtgtc_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"86.57135926386607%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_gysfvydwwqlgwayjtgtc_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.152</text><svg x=\"85.25616231436435%\" y=\"40\" height=\"20\" width=\"2.630393899003437%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">im</text> </svg></svg><line x1=\"87.88655621336778%\" x2=\"90.15001748485567%\" y1=\"60\" y2=\"60\" id=\"_fb_gysfvydwwqlgwayjtgtc_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"89.01828684911172%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_gysfvydwwqlgwayjtgtc_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.131</text><svg x=\"87.88655621336778%\" y=\"40\" height=\"20\" width=\"2.263461271487884%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">a</text> </svg></svg><line x1=\"90.15001748485567%\" x2=\"91.31063382155803%\" y1=\"60\" y2=\"60\" id=\"_fb_gysfvydwwqlgwayjtgtc_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"90.73032565320685%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_gysfvydwwqlgwayjtgtc_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.067</text><svg x=\"90.15001748485567%\" y=\"40\" height=\"20\" width=\"1.1606163367023612%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><line x1=\"91.31063382155803%\" x2=\"91.66027501402377%\" y1=\"60\" y2=\"60\" id=\"_fb_gysfvydwwqlgwayjtgtc_ind_7\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.48545441779089%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_gysfvydwwqlgwayjtgtc_ind_7\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.02</text><svg x=\"91.31063382155803%\" y=\"40\" height=\"20\" width=\"0.34964119246573944%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"91.66027501402377%\" x2=\"91.666666507858%\" y1=\"60\" y2=\"60\" id=\"_fb_gysfvydwwqlgwayjtgtc_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.66347076094088%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_gysfvydwwqlgwayjtgtc_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"91.66027501402377%\" y=\"40\" height=\"20\" width=\"0.006391493834229323%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">minute</text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"67.14450673027073%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"67.14450673027073%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"67.14450673027073%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"67.14450673027073%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"67.14450673027073%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"67.14450673027073%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"67.14450673027073%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"67.14450673027073%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"76.28422955325557%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"76.28422955325557%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"76.28422955325557%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"76.28422955325557%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"76.28422955325557%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"76.28422955325557%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"76.28422955325557%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"76.28422955325557%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"85.25616231436435%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"85.25616231436435%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"85.25616231436435%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"85.25616231436435%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"85.25616231436435%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"85.25616231436435%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"85.25616231436435%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"85.25616231436435%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"87.88655621336778%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"87.88655621336778%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"87.88655621336778%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"87.88655621336778%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"87.88655621336778%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"87.88655621336778%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"87.88655621336778%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"87.88655621336778%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"90.15001748485567%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.15001748485567%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.15001748485567%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.15001748485567%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.15001748485567%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.15001748485567%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.15001748485567%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.15001748485567%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.31063382155803%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.31063382155803%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.31063382155803%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.31063382155803%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.31063382155803%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.31063382155803%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.31063382155803%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.31063382155803%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.66027501402377%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.66027501402377%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.66027501402377%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.66027501402377%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.66027501402377%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.66027501402377%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.66027501402377%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.66027501402377%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"12.161079462946752%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.666666507858%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"67.14450673027073%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"12.161079462946752%\" y=\"40\" height=\"20\" width=\"54.98342726732398%\" onmouseover=\"document.getElementById('_tp_gysfvydwwqlgwayjtgtc_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_gysfvydwwqlgwayjtgtc_ind_9').style.opacity = 1;document.getElementById('_fb_gysfvydwwqlgwayjtgtc_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gysfvydwwqlgwayjtgtc_ind_9').style.textDecoration = 'none';document.getElementById('_fs_gysfvydwwqlgwayjtgtc_ind_9').style.opacity = 0;document.getElementById('_fb_gysfvydwwqlgwayjtgtc_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"76.28422955325557%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"67.14450673027073%\" y=\"40\" height=\"20\" width=\"9.139722822984837%\" onmouseover=\"document.getElementById('_tp_gysfvydwwqlgwayjtgtc_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_gysfvydwwqlgwayjtgtc_ind_8').style.opacity = 1;document.getElementById('_fb_gysfvydwwqlgwayjtgtc_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gysfvydwwqlgwayjtgtc_ind_8').style.textDecoration = 'none';document.getElementById('_fs_gysfvydwwqlgwayjtgtc_ind_8').style.opacity = 0;document.getElementById('_fb_gysfvydwwqlgwayjtgtc_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"85.25616231436435%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"76.28422955325557%\" y=\"40\" height=\"20\" width=\"8.971932761108775%\" onmouseover=\"document.getElementById('_tp_gysfvydwwqlgwayjtgtc_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_gysfvydwwqlgwayjtgtc_ind_2').style.opacity = 1;document.getElementById('_fb_gysfvydwwqlgwayjtgtc_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gysfvydwwqlgwayjtgtc_ind_2').style.textDecoration = 'none';document.getElementById('_fs_gysfvydwwqlgwayjtgtc_ind_2').style.opacity = 0;document.getElementById('_fb_gysfvydwwqlgwayjtgtc_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"87.88655621336778%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"85.25616231436435%\" y=\"40\" height=\"20\" width=\"2.630393899003437%\" onmouseover=\"document.getElementById('_tp_gysfvydwwqlgwayjtgtc_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_gysfvydwwqlgwayjtgtc_ind_1').style.opacity = 1;document.getElementById('_fb_gysfvydwwqlgwayjtgtc_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gysfvydwwqlgwayjtgtc_ind_1').style.textDecoration = 'none';document.getElementById('_fs_gysfvydwwqlgwayjtgtc_ind_1').style.opacity = 0;document.getElementById('_fb_gysfvydwwqlgwayjtgtc_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"90.15001748485567%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"87.88655621336778%\" y=\"40\" height=\"20\" width=\"2.263461271487884%\" onmouseover=\"document.getElementById('_tp_gysfvydwwqlgwayjtgtc_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_gysfvydwwqlgwayjtgtc_ind_3').style.opacity = 1;document.getElementById('_fb_gysfvydwwqlgwayjtgtc_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gysfvydwwqlgwayjtgtc_ind_3').style.textDecoration = 'none';document.getElementById('_fs_gysfvydwwqlgwayjtgtc_ind_3').style.opacity = 0;document.getElementById('_fb_gysfvydwwqlgwayjtgtc_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.31063382155803%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"90.15001748485567%\" y=\"40\" height=\"20\" width=\"1.1606163367023612%\" onmouseover=\"document.getElementById('_tp_gysfvydwwqlgwayjtgtc_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_gysfvydwwqlgwayjtgtc_ind_5').style.opacity = 1;document.getElementById('_fb_gysfvydwwqlgwayjtgtc_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gysfvydwwqlgwayjtgtc_ind_5').style.textDecoration = 'none';document.getElementById('_fs_gysfvydwwqlgwayjtgtc_ind_5').style.opacity = 0;document.getElementById('_fb_gysfvydwwqlgwayjtgtc_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66027501402377%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.31063382155803%\" y=\"40\" height=\"20\" width=\"0.34964119246573944%\" onmouseover=\"document.getElementById('_tp_gysfvydwwqlgwayjtgtc_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_gysfvydwwqlgwayjtgtc_ind_7').style.opacity = 1;document.getElementById('_fb_gysfvydwwqlgwayjtgtc_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gysfvydwwqlgwayjtgtc_ind_7').style.textDecoration = 'none';document.getElementById('_fs_gysfvydwwqlgwayjtgtc_ind_7').style.opacity = 0;document.getElementById('_fb_gysfvydwwqlgwayjtgtc_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"91.66027501402377%\" y=\"40\" height=\"20\" width=\"0.006391493834229323%\" onmouseover=\"document.getElementById('_tp_gysfvydwwqlgwayjtgtc_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_gysfvydwwqlgwayjtgtc_ind_4').style.opacity = 1;document.getElementById('_fb_gysfvydwwqlgwayjtgtc_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gysfvydwwqlgwayjtgtc_ind_4').style.textDecoration = 'none';document.getElementById('_fs_gysfvydwwqlgwayjtgtc_ind_4').style.opacity = 0;document.getElementById('_fb_gysfvydwwqlgwayjtgtc_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_gysfvydwwqlgwayjtgtc_ind_0'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gysfvydwwqlgwayjtgtc_ind_0').style.opacity = 1; document.getElementById('_fs_gysfvydwwqlgwayjtgtc_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gysfvydwwqlgwayjtgtc_ind_0').style.opacity = 0; document.getElementById('_fs_gysfvydwwqlgwayjtgtc_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.152</div\n",
|
|
" ><div id='_tp_gysfvydwwqlgwayjtgtc_ind_1'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.04618736383442258); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gysfvydwwqlgwayjtgtc_ind_1').style.opacity = 1; document.getElementById('_fs_gysfvydwwqlgwayjtgtc_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gysfvydwwqlgwayjtgtc_ind_1').style.opacity = 0; document.getElementById('_fs_gysfvydwwqlgwayjtgtc_ind_1').style.opacity = 0;\"\n",
|
|
" >im </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.518</div\n",
|
|
" ><div id='_tp_gysfvydwwqlgwayjtgtc_ind_2'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.1565458506634977); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gysfvydwwqlgwayjtgtc_ind_2').style.opacity = 1; document.getElementById('_fs_gysfvydwwqlgwayjtgtc_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gysfvydwwqlgwayjtgtc_ind_2').style.opacity = 0; document.getElementById('_fs_gysfvydwwqlgwayjtgtc_ind_2').style.opacity = 0;\"\n",
|
|
" >grabbing </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.131</div\n",
|
|
" ><div id='_tp_gysfvydwwqlgwayjtgtc_ind_3'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03830461477520309); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gysfvydwwqlgwayjtgtc_ind_3').style.opacity = 1; document.getElementById('_fs_gysfvydwwqlgwayjtgtc_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gysfvydwwqlgwayjtgtc_ind_3').style.opacity = 0; document.getElementById('_fs_gysfvydwwqlgwayjtgtc_ind_3').style.opacity = 0;\"\n",
|
|
" >a </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_gysfvydwwqlgwayjtgtc_ind_4'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gysfvydwwqlgwayjtgtc_ind_4').style.opacity = 1; document.getElementById('_fs_gysfvydwwqlgwayjtgtc_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gysfvydwwqlgwayjtgtc_ind_4').style.opacity = 0; document.getElementById('_fs_gysfvydwwqlgwayjtgtc_ind_4').style.opacity = 0;\"\n",
|
|
" >minute </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.067</div\n",
|
|
" ><div id='_tp_gysfvydwwqlgwayjtgtc_ind_5'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gysfvydwwqlgwayjtgtc_ind_5').style.opacity = 1; document.getElementById('_fs_gysfvydwwqlgwayjtgtc_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gysfvydwwqlgwayjtgtc_ind_5').style.opacity = 0; document.getElementById('_fs_gysfvydwwqlgwayjtgtc_ind_5').style.opacity = 0;\"\n",
|
|
" >to </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.009</div\n",
|
|
" ><div id='_tp_gysfvydwwqlgwayjtgtc_ind_6'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gysfvydwwqlgwayjtgtc_ind_6').style.opacity = 1; document.getElementById('_fs_gysfvydwwqlgwayjtgtc_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gysfvydwwqlgwayjtgtc_ind_6').style.opacity = 0; document.getElementById('_fs_gysfvydwwqlgwayjtgtc_ind_6').style.opacity = 0;\"\n",
|
|
" >post </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.02</div\n",
|
|
" ><div id='_tp_gysfvydwwqlgwayjtgtc_ind_7'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gysfvydwwqlgwayjtgtc_ind_7').style.opacity = 1; document.getElementById('_fs_gysfvydwwqlgwayjtgtc_ind_7').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gysfvydwwqlgwayjtgtc_ind_7').style.opacity = 0; document.getElementById('_fs_gysfvydwwqlgwayjtgtc_ind_7').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.528</div\n",
|
|
" ><div id='_tp_gysfvydwwqlgwayjtgtc_ind_8'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.16442859972271748); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gysfvydwwqlgwayjtgtc_ind_8').style.opacity = 1; document.getElementById('_fs_gysfvydwwqlgwayjtgtc_ind_8').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gysfvydwwqlgwayjtgtc_ind_8').style.opacity = 0; document.getElementById('_fs_gysfvydwwqlgwayjtgtc_ind_8').style.opacity = 0;\"\n",
|
|
" >feel </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-3.174</div\n",
|
|
" ><div id='_tp_gysfvydwwqlgwayjtgtc_ind_9'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 1.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gysfvydwwqlgwayjtgtc_ind_9').style.opacity = 1; document.getElementById('_fs_gysfvydwwqlgwayjtgtc_ind_9').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gysfvydwwqlgwayjtgtc_ind_9').style.opacity = 0; document.getElementById('_fs_gysfvydwwqlgwayjtgtc_ind_9').style.opacity = 0;\"\n",
|
|
" >greedy </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.212</div\n",
|
|
" ><div id='_tp_gysfvydwwqlgwayjtgtc_ind_10'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.06195286195286207); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gysfvydwwqlgwayjtgtc_ind_10').style.opacity = 1; document.getElementById('_fs_gysfvydwwqlgwayjtgtc_ind_10').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gysfvydwwqlgwayjtgtc_ind_10').style.opacity = 0; document.getElementById('_fs_gysfvydwwqlgwayjtgtc_ind_10').style.opacity = 0;\"\n",
|
|
" >wrong</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_gysfvydwwqlgwayjtgtc_ind_11'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gysfvydwwqlgwayjtgtc_ind_11').style.opacity = 1; document.getElementById('_fs_gysfvydwwqlgwayjtgtc_ind_11').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gysfvydwwqlgwayjtgtc_ind_11').style.opacity = 0; document.getElementById('_fs_gysfvydwwqlgwayjtgtc_ind_11').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_apuwqawtzdakfvbqpgxu_output_1' style='display: none';><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"49.99634084343776%\" y1=\"33\" x2=\"49.99634084343776%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"49.99634084343776%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1</text><line x1=\"34.135128947971666%\" y1=\"33\" x2=\"34.135128947971666%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"34.135128947971666%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"18.273917052505578%\" y1=\"33\" x2=\"18.273917052505578%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"18.273917052505578%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7</text><line x1=\"65.85755273890385%\" y1=\"33\" x2=\"65.85755273890385%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"65.85755273890385%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">2</text><line x1=\"81.71876463436993%\" y1=\"33\" x2=\"81.71876463436993%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"81.71876463436993%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">5</text><line x1=\"50.33115926026657%\" y1=\"33\" x2=\"50.33115926026657%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"50.33115926026657%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.936672</text><text x=\"50.33115926026657%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.936672</text><text x=\"50.33115926026657%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"16.75107180138417%\" y1=\"33\" x2=\"16.75107180138417%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"16.75107180138417%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7.28803</text><text x=\"16.75107180138417%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7.28803</text><text x=\"16.75107180138417%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">joy</tspan>(inputs)</text><rect x=\"16.175409442967705%\" width=\"0.5756623584164621%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"16.300414640133113%\" x2=\"16.75107180138417%\" y1=\"60\" y2=\"60\" id=\"_fb_tnwesbpfnmmqounhkzda_ind_5\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"16.525743220758642%\" y=\"71\" font-size=\"12px\" id=\"_fs_tnwesbpfnmmqounhkzda_ind_5\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.085</text><svg x=\"16.300414640133113%\" y=\"40\" height=\"20\" width=\"0.45065716125105837%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><line x1=\"16.175409442967705%\" x2=\"16.300414640133113%\" y1=\"60\" y2=\"60\" id=\"_fb_tnwesbpfnmmqounhkzda_ind_7\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"16.23791204155041%\" y=\"71\" font-size=\"12px\" id=\"_fs_tnwesbpfnmmqounhkzda_ind_7\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.024</text><svg x=\"16.175409442967705%\" y=\"40\" height=\"20\" width=\"0.12500519716540737%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"16.300414640133113%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"16.300414640133113%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"16.300414640133113%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"16.300414640133113%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"16.300414640133113%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"16.300414640133113%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"16.300414640133113%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"16.300414640133113%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"16.75107180138417%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"16.175409442967705%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"16.75107180138417%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"16.300414640133113%\" y=\"40\" height=\"20\" width=\"0.45065716125105837%\" onmouseover=\"document.getElementById('_tp_tnwesbpfnmmqounhkzda_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_tnwesbpfnmmqounhkzda_ind_5').style.opacity = 1;document.getElementById('_fb_tnwesbpfnmmqounhkzda_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_tnwesbpfnmmqounhkzda_ind_5').style.textDecoration = 'none';document.getElementById('_fs_tnwesbpfnmmqounhkzda_ind_5').style.opacity = 0;document.getElementById('_fb_tnwesbpfnmmqounhkzda_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"16.175409442967705%\" y=\"40\" height=\"20\" width=\"0.12500519716540737%\" onmouseover=\"document.getElementById('_tp_tnwesbpfnmmqounhkzda_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_tnwesbpfnmmqounhkzda_ind_7').style.opacity = 1;document.getElementById('_fb_tnwesbpfnmmqounhkzda_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_tnwesbpfnmmqounhkzda_ind_7').style.textDecoration = 'none';document.getElementById('_fs_tnwesbpfnmmqounhkzda_ind_7').style.opacity = 0;document.getElementById('_fb_tnwesbpfnmmqounhkzda_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"16.75107180138417%\" width=\"34.15574981729886%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"16.75107180138417%\" x2=\"40.30947532341155%\" y1=\"60\" y2=\"60\" id=\"_fb_tnwesbpfnmmqounhkzda_ind_9\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"28.53027356239786%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_tnwesbpfnmmqounhkzda_ind_9\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-4.456</text><svg x=\"16.75107180138417%\" y=\"40\" height=\"20\" width=\"23.558403522027376%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">greedy</text> </svg></svg><line x1=\"40.30947532341155%\" x2=\"43.98091255056157%\" y1=\"60\" y2=\"60\" id=\"_fb_tnwesbpfnmmqounhkzda_ind_10\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"42.14519393698656%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_tnwesbpfnmmqounhkzda_ind_10\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.694</text><svg x=\"40.30947532341155%\" y=\"40\" height=\"20\" width=\"3.6714372271500224%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">wrong</text> </svg></svg><line x1=\"43.98091255056157%\" x2=\"46.835873533227144%\" y1=\"60\" y2=\"60\" id=\"_fb_tnwesbpfnmmqounhkzda_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"45.40839304189436%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_tnwesbpfnmmqounhkzda_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.54</text><svg x=\"43.98091255056157%\" y=\"40\" height=\"20\" width=\"2.854960982665574%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">grabbing</text> </svg></svg><line x1=\"46.835873533227144%\" x2=\"49.39419294113741%\" y1=\"60\" y2=\"60\" id=\"_fb_tnwesbpfnmmqounhkzda_ind_8\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"48.115033237182274%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_tnwesbpfnmmqounhkzda_ind_8\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.484</text><svg x=\"46.835873533227144%\" y=\"40\" height=\"20\" width=\"2.5583194079102682%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"49.39419294113741%\" x2=\"50.41432257807746%\" y1=\"60\" y2=\"60\" id=\"_fb_tnwesbpfnmmqounhkzda_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"49.90425775960743%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_tnwesbpfnmmqounhkzda_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.193</text><svg x=\"49.39419294113741%\" y=\"40\" height=\"20\" width=\"1.020129636940048%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">im</text> </svg></svg><line x1=\"50.41432257807746%\" x2=\"50.732665713553%\" y1=\"60\" y2=\"60\" id=\"_fb_tnwesbpfnmmqounhkzda_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"50.57349414581523%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_tnwesbpfnmmqounhkzda_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.06</text><svg x=\"50.41432257807746%\" y=\"40\" height=\"20\" width=\"0.31834313547553705%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">minute</text> </svg></svg><line x1=\"50.732665713553%\" x2=\"50.82045082852048%\" y1=\"60\" y2=\"60\" id=\"_fb_tnwesbpfnmmqounhkzda_ind_6\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"50.776558271036734%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_tnwesbpfnmmqounhkzda_ind_6\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.017</text><svg x=\"50.732665713553%\" y=\"40\" height=\"20\" width=\"0.08778511496748109%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">post</text> </svg></svg><line x1=\"50.82045082852048%\" x2=\"50.90681991780381%\" y1=\"60\" y2=\"60\" id=\"_fb_tnwesbpfnmmqounhkzda_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"50.86363537316214%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_tnwesbpfnmmqounhkzda_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.016</text><svg x=\"50.82045082852048%\" y=\"40\" height=\"20\" width=\"0.08636908928333042%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">a</text> </svg></svg><line x1=\"50.90681991780381%\" x2=\"50.9068214756393%\" y1=\"60\" y2=\"60\" id=\"_fb_tnwesbpfnmmqounhkzda_ind_11\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"50.90682069672155%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_tnwesbpfnmmqounhkzda_ind_11\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"50.90681991780381%\" y=\"40\" height=\"20\" width=\"1.557835489052195e-06%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><line x1=\"50.9068214756393%\" x2=\"50.90682161868303%\" y1=\"60\" y2=\"60\" id=\"_fb_tnwesbpfnmmqounhkzda_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"50.906821547161165%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_tnwesbpfnmmqounhkzda_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"50.9068214756393%\" y=\"40\" height=\"20\" width=\"1.4304373507911805e-07%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"40.30947532341155%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"40.30947532341155%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"40.30947532341155%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"40.30947532341155%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"40.30947532341155%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"40.30947532341155%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"40.30947532341155%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"40.30947532341155%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"43.98091255056157%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"43.98091255056157%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"43.98091255056157%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"43.98091255056157%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"43.98091255056157%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"43.98091255056157%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"43.98091255056157%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"43.98091255056157%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"46.835873533227144%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"46.835873533227144%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"46.835873533227144%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"46.835873533227144%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"46.835873533227144%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"46.835873533227144%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"46.835873533227144%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"46.835873533227144%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"49.39419294113741%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"49.39419294113741%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"49.39419294113741%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"49.39419294113741%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"49.39419294113741%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"49.39419294113741%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"49.39419294113741%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"49.39419294113741%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"50.41432257807746%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"50.41432257807746%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"50.41432257807746%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"50.41432257807746%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"50.41432257807746%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"50.41432257807746%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"50.41432257807746%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"50.41432257807746%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"50.732665713553%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"50.732665713553%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"50.732665713553%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"50.732665713553%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"50.732665713553%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"50.732665713553%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"50.732665713553%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"50.732665713553%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"50.82045082852048%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"50.82045082852048%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"50.82045082852048%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"50.82045082852048%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"50.82045082852048%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"50.82045082852048%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"50.82045082852048%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"50.82045082852048%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"50.90681991780381%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"50.90681991780381%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"50.90681991780381%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"50.90681991780381%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"50.90681991780381%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"50.90681991780381%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"50.90681991780381%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"50.90681991780381%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"50.9068214756393%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"50.9068214756393%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"50.9068214756393%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"50.9068214756393%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"50.9068214756393%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"50.9068214756393%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"50.9068214756393%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"50.9068214756393%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"16.75107180138417%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"50.90682161868303%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"40.30947532341155%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"16.75107180138417%\" y=\"40\" height=\"20\" width=\"23.558403522027376%\" onmouseover=\"document.getElementById('_tp_tnwesbpfnmmqounhkzda_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_tnwesbpfnmmqounhkzda_ind_9').style.opacity = 1;document.getElementById('_fb_tnwesbpfnmmqounhkzda_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_tnwesbpfnmmqounhkzda_ind_9').style.textDecoration = 'none';document.getElementById('_fs_tnwesbpfnmmqounhkzda_ind_9').style.opacity = 0;document.getElementById('_fb_tnwesbpfnmmqounhkzda_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"43.98091255056157%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"40.30947532341155%\" y=\"40\" height=\"20\" width=\"3.6714372271500224%\" onmouseover=\"document.getElementById('_tp_tnwesbpfnmmqounhkzda_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_tnwesbpfnmmqounhkzda_ind_10').style.opacity = 1;document.getElementById('_fb_tnwesbpfnmmqounhkzda_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_tnwesbpfnmmqounhkzda_ind_10').style.textDecoration = 'none';document.getElementById('_fs_tnwesbpfnmmqounhkzda_ind_10').style.opacity = 0;document.getElementById('_fb_tnwesbpfnmmqounhkzda_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"46.835873533227144%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"43.98091255056157%\" y=\"40\" height=\"20\" width=\"2.854960982665574%\" onmouseover=\"document.getElementById('_tp_tnwesbpfnmmqounhkzda_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_tnwesbpfnmmqounhkzda_ind_2').style.opacity = 1;document.getElementById('_fb_tnwesbpfnmmqounhkzda_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_tnwesbpfnmmqounhkzda_ind_2').style.textDecoration = 'none';document.getElementById('_fs_tnwesbpfnmmqounhkzda_ind_2').style.opacity = 0;document.getElementById('_fb_tnwesbpfnmmqounhkzda_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"49.39419294113741%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"46.835873533227144%\" y=\"40\" height=\"20\" width=\"2.5583194079102682%\" onmouseover=\"document.getElementById('_tp_tnwesbpfnmmqounhkzda_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_tnwesbpfnmmqounhkzda_ind_8').style.opacity = 1;document.getElementById('_fb_tnwesbpfnmmqounhkzda_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_tnwesbpfnmmqounhkzda_ind_8').style.textDecoration = 'none';document.getElementById('_fs_tnwesbpfnmmqounhkzda_ind_8').style.opacity = 0;document.getElementById('_fb_tnwesbpfnmmqounhkzda_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"50.41432257807746%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"49.39419294113741%\" y=\"40\" height=\"20\" width=\"1.020129636940048%\" onmouseover=\"document.getElementById('_tp_tnwesbpfnmmqounhkzda_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_tnwesbpfnmmqounhkzda_ind_1').style.opacity = 1;document.getElementById('_fb_tnwesbpfnmmqounhkzda_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_tnwesbpfnmmqounhkzda_ind_1').style.textDecoration = 'none';document.getElementById('_fs_tnwesbpfnmmqounhkzda_ind_1').style.opacity = 0;document.getElementById('_fb_tnwesbpfnmmqounhkzda_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"50.732665713553%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"50.41432257807746%\" y=\"40\" height=\"20\" width=\"0.31834313547553705%\" onmouseover=\"document.getElementById('_tp_tnwesbpfnmmqounhkzda_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_tnwesbpfnmmqounhkzda_ind_4').style.opacity = 1;document.getElementById('_fb_tnwesbpfnmmqounhkzda_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_tnwesbpfnmmqounhkzda_ind_4').style.textDecoration = 'none';document.getElementById('_fs_tnwesbpfnmmqounhkzda_ind_4').style.opacity = 0;document.getElementById('_fb_tnwesbpfnmmqounhkzda_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"50.82045082852048%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"50.732665713553%\" y=\"40\" height=\"20\" width=\"0.08778511496748109%\" onmouseover=\"document.getElementById('_tp_tnwesbpfnmmqounhkzda_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_tnwesbpfnmmqounhkzda_ind_6').style.opacity = 1;document.getElementById('_fb_tnwesbpfnmmqounhkzda_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_tnwesbpfnmmqounhkzda_ind_6').style.textDecoration = 'none';document.getElementById('_fs_tnwesbpfnmmqounhkzda_ind_6').style.opacity = 0;document.getElementById('_fb_tnwesbpfnmmqounhkzda_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"50.90681991780381%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"50.82045082852048%\" y=\"40\" height=\"20\" width=\"0.08636908928333042%\" onmouseover=\"document.getElementById('_tp_tnwesbpfnmmqounhkzda_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_tnwesbpfnmmqounhkzda_ind_3').style.opacity = 1;document.getElementById('_fb_tnwesbpfnmmqounhkzda_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_tnwesbpfnmmqounhkzda_ind_3').style.textDecoration = 'none';document.getElementById('_fs_tnwesbpfnmmqounhkzda_ind_3').style.opacity = 0;document.getElementById('_fb_tnwesbpfnmmqounhkzda_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"50.9068214756393%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"50.90681991780381%\" y=\"40\" height=\"20\" width=\"1.557835489052195e-06%\" onmouseover=\"document.getElementById('_tp_tnwesbpfnmmqounhkzda_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_tnwesbpfnmmqounhkzda_ind_11').style.opacity = 1;document.getElementById('_fb_tnwesbpfnmmqounhkzda_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_tnwesbpfnmmqounhkzda_ind_11').style.textDecoration = 'none';document.getElementById('_fs_tnwesbpfnmmqounhkzda_ind_11').style.opacity = 0;document.getElementById('_fb_tnwesbpfnmmqounhkzda_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"50.9068214756393%\" y=\"40\" height=\"20\" width=\"1.4304373507911805e-07%\" onmouseover=\"document.getElementById('_tp_tnwesbpfnmmqounhkzda_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_tnwesbpfnmmqounhkzda_ind_0').style.opacity = 1;document.getElementById('_fb_tnwesbpfnmmqounhkzda_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_tnwesbpfnmmqounhkzda_ind_0').style.textDecoration = 'none';document.getElementById('_fs_tnwesbpfnmmqounhkzda_ind_0').style.opacity = 0;document.getElementById('_fb_tnwesbpfnmmqounhkzda_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_tnwesbpfnmmqounhkzda_ind_0'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_tnwesbpfnmmqounhkzda_ind_0').style.opacity = 1; document.getElementById('_fs_tnwesbpfnmmqounhkzda_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_tnwesbpfnmmqounhkzda_ind_0').style.opacity = 0; document.getElementById('_fs_tnwesbpfnmmqounhkzda_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.193</div\n",
|
|
" ><div id='_tp_tnwesbpfnmmqounhkzda_ind_1'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.022539116656763607); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_tnwesbpfnmmqounhkzda_ind_1').style.opacity = 1; document.getElementById('_fs_tnwesbpfnmmqounhkzda_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_tnwesbpfnmmqounhkzda_ind_1').style.opacity = 0; document.getElementById('_fs_tnwesbpfnmmqounhkzda_ind_1').style.opacity = 0;\"\n",
|
|
" >im </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.54</div\n",
|
|
" ><div id='_tp_tnwesbpfnmmqounhkzda_ind_2'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.07771836007130117); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_tnwesbpfnmmqounhkzda_ind_2').style.opacity = 1; document.getElementById('_fs_tnwesbpfnmmqounhkzda_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_tnwesbpfnmmqounhkzda_ind_2').style.opacity = 0; document.getElementById('_fs_tnwesbpfnmmqounhkzda_ind_2').style.opacity = 0;\"\n",
|
|
" >grabbing </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.016</div\n",
|
|
" ><div id='_tp_tnwesbpfnmmqounhkzda_ind_3'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_tnwesbpfnmmqounhkzda_ind_3').style.opacity = 1; document.getElementById('_fs_tnwesbpfnmmqounhkzda_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_tnwesbpfnmmqounhkzda_ind_3').style.opacity = 0; document.getElementById('_fs_tnwesbpfnmmqounhkzda_ind_3').style.opacity = 0;\"\n",
|
|
" >a </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.06</div\n",
|
|
" ><div id='_tp_tnwesbpfnmmqounhkzda_ind_4'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_tnwesbpfnmmqounhkzda_ind_4').style.opacity = 1; document.getElementById('_fs_tnwesbpfnmmqounhkzda_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_tnwesbpfnmmqounhkzda_ind_4').style.opacity = 0; document.getElementById('_fs_tnwesbpfnmmqounhkzda_ind_4').style.opacity = 0;\"\n",
|
|
" >minute </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.085</div\n",
|
|
" ><div id='_tp_tnwesbpfnmmqounhkzda_ind_5'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_tnwesbpfnmmqounhkzda_ind_5').style.opacity = 1; document.getElementById('_fs_tnwesbpfnmmqounhkzda_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_tnwesbpfnmmqounhkzda_ind_5').style.opacity = 0; document.getElementById('_fs_tnwesbpfnmmqounhkzda_ind_5').style.opacity = 0;\"\n",
|
|
" >to </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.017</div\n",
|
|
" ><div id='_tp_tnwesbpfnmmqounhkzda_ind_6'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_tnwesbpfnmmqounhkzda_ind_6').style.opacity = 1; document.getElementById('_fs_tnwesbpfnmmqounhkzda_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_tnwesbpfnmmqounhkzda_ind_6').style.opacity = 0; document.getElementById('_fs_tnwesbpfnmmqounhkzda_ind_6').style.opacity = 0;\"\n",
|
|
" >post </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.024</div\n",
|
|
" ><div id='_tp_tnwesbpfnmmqounhkzda_ind_7'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_tnwesbpfnmmqounhkzda_ind_7').style.opacity = 1; document.getElementById('_fs_tnwesbpfnmmqounhkzda_ind_7').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_tnwesbpfnmmqounhkzda_ind_7').style.opacity = 0; document.getElementById('_fs_tnwesbpfnmmqounhkzda_ind_7').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.484</div\n",
|
|
" ><div id='_tp_tnwesbpfnmmqounhkzda_ind_8'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.06195286195286191); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_tnwesbpfnmmqounhkzda_ind_8').style.opacity = 1; document.getElementById('_fs_tnwesbpfnmmqounhkzda_ind_8').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_tnwesbpfnmmqounhkzda_ind_8').style.opacity = 0; document.getElementById('_fs_tnwesbpfnmmqounhkzda_ind_8').style.opacity = 0;\"\n",
|
|
" >feel </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-4.456</div\n",
|
|
" ><div id='_tp_tnwesbpfnmmqounhkzda_ind_9'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.6452762923351159); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_tnwesbpfnmmqounhkzda_ind_9').style.opacity = 1; document.getElementById('_fs_tnwesbpfnmmqounhkzda_ind_9').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_tnwesbpfnmmqounhkzda_ind_9').style.opacity = 0; document.getElementById('_fs_tnwesbpfnmmqounhkzda_ind_9').style.opacity = 0;\"\n",
|
|
" >greedy </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.694</div\n",
|
|
" ><div id='_tp_tnwesbpfnmmqounhkzda_ind_10'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.09348385818974048); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_tnwesbpfnmmqounhkzda_ind_10').style.opacity = 1; document.getElementById('_fs_tnwesbpfnmmqounhkzda_ind_10').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_tnwesbpfnmmqounhkzda_ind_10').style.opacity = 0; document.getElementById('_fs_tnwesbpfnmmqounhkzda_ind_10').style.opacity = 0;\"\n",
|
|
" >wrong</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_tnwesbpfnmmqounhkzda_ind_11'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_tnwesbpfnmmqounhkzda_ind_11').style.opacity = 1; document.getElementById('_fs_tnwesbpfnmmqounhkzda_ind_11').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_tnwesbpfnmmqounhkzda_ind_11').style.opacity = 0; document.getElementById('_fs_tnwesbpfnmmqounhkzda_ind_11').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_apuwqawtzdakfvbqpgxu_output_1_zoom' style='display: none;'><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"51.42525491273849%\" y1=\"33\" x2=\"51.42525491273849%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"51.42525491273849%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"38.73964292176813%\" y1=\"33\" x2=\"38.73964292176813%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"38.73964292176813%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-5</text><line x1=\"26.054030930797772%\" y1=\"33\" x2=\"26.054030930797772%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"26.054030930797772%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6</text><line x1=\"13.368418939827414%\" y1=\"33\" x2=\"13.368418939827414%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"13.368418939827414%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7</text><line x1=\"64.11086690370884%\" y1=\"33\" x2=\"64.11086690370884%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"64.11086690370884%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-3</text><line x1=\"76.7964788946792%\" y1=\"33\" x2=\"76.7964788946792%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"76.7964788946792%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2</text><line x1=\"89.48209088564955%\" y1=\"33\" x2=\"89.48209088564955%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"89.48209088564955%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1</text><line x1=\"90.28544246142708%\" y1=\"33\" x2=\"90.28544246142708%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"90.28544246142708%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.936672</text><text x=\"90.28544246142708%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-0.936672</text><text x=\"90.28544246142708%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"9.7145574117168%\" y1=\"33\" x2=\"9.7145574117168%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"9.7145574117168%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7.28803</text><text x=\"9.7145574117168%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7.28803</text><text x=\"9.7145574117168%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">joy</tspan>(inputs)</text><rect x=\"8.33333332276198%\" width=\"1.381224088954816%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"8.633266412089487%\" x2=\"9.7145574117168%\" y1=\"60\" y2=\"60\" id=\"_fb_rkpfzhidypiarxdpalaj_ind_5\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"9.173911911903144%\" y=\"71\" font-size=\"12px\" id=\"_fs_rkpfzhidypiarxdpalaj_ind_5\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.085</text><svg x=\"8.633266412089487%\" y=\"40\" height=\"20\" width=\"1.0812909996273135%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><line x1=\"8.33333332276198%\" x2=\"8.633266412089487%\" y1=\"60\" y2=\"60\" id=\"_fb_rkpfzhidypiarxdpalaj_ind_7\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.483299867425734%\" y=\"71\" font-size=\"12px\" id=\"_fs_rkpfzhidypiarxdpalaj_ind_7\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.024</text><svg x=\"8.33333332276198%\" y=\"40\" height=\"20\" width=\"0.2999330893275065%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"8.633266412089487%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.633266412089487%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.633266412089487%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.633266412089487%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.633266412089487%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.633266412089487%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.633266412089487%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.633266412089487%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"9.7145574117168%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.33333332276198%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"9.7145574117168%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.633266412089487%\" y=\"40\" height=\"20\" width=\"1.0812909996273135%\" onmouseover=\"document.getElementById('_tp_rkpfzhidypiarxdpalaj_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_rkpfzhidypiarxdpalaj_ind_5').style.opacity = 1;document.getElementById('_fb_rkpfzhidypiarxdpalaj_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rkpfzhidypiarxdpalaj_ind_5').style.textDecoration = 'none';document.getElementById('_fs_rkpfzhidypiarxdpalaj_ind_5').style.opacity = 0;document.getElementById('_fb_rkpfzhidypiarxdpalaj_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"8.33333332276198%\" y=\"40\" height=\"20\" width=\"0.2999330893275065%\" onmouseover=\"document.getElementById('_tp_rkpfzhidypiarxdpalaj_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_rkpfzhidypiarxdpalaj_ind_7').style.opacity = 1;document.getElementById('_fb_rkpfzhidypiarxdpalaj_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rkpfzhidypiarxdpalaj_ind_7').style.textDecoration = 'none';document.getElementById('_fs_rkpfzhidypiarxdpalaj_ind_7').style.opacity = 0;document.getElementById('_fb_rkpfzhidypiarxdpalaj_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"9.7145574117168%\" width=\"81.9521091386651%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"9.7145574117168%\" x2=\"66.23976522876427%\" y1=\"60\" y2=\"60\" id=\"_fb_rkpfzhidypiarxdpalaj_ind_9\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"37.97716132024053%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rkpfzhidypiarxdpalaj_ind_9\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-4.456</text><svg x=\"9.7145574117168%\" y=\"40\" height=\"20\" width=\"56.52520781704747%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">greedy</text> </svg></svg><line x1=\"66.23976522876427%\" x2=\"75.04888304771401%\" y1=\"60\" y2=\"60\" id=\"_fb_rkpfzhidypiarxdpalaj_ind_10\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"70.64432413823914%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rkpfzhidypiarxdpalaj_ind_10\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.694</text><svg x=\"66.23976522876427%\" y=\"40\" height=\"20\" width=\"8.809117818949744%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">wrong</text> </svg></svg><line x1=\"75.04888304771401%\" x2=\"81.89897637869225%\" y1=\"60\" y2=\"60\" id=\"_fb_rkpfzhidypiarxdpalaj_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"78.47392971320313%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rkpfzhidypiarxdpalaj_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.54</text><svg x=\"75.04888304771401%\" y=\"40\" height=\"20\" width=\"6.85009333097824%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">grabbing</text> </svg></svg><line x1=\"81.89897637869225%\" x2=\"88.03731831087376%\" y1=\"60\" y2=\"60\" id=\"_fb_rkpfzhidypiarxdpalaj_ind_8\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"84.968147344783%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rkpfzhidypiarxdpalaj_ind_8\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.484</text><svg x=\"81.89897637869225%\" y=\"40\" height=\"20\" width=\"6.138341932181504%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"88.03731831087376%\" x2=\"90.4849816117613%\" y1=\"60\" y2=\"60\" id=\"_fb_rkpfzhidypiarxdpalaj_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"89.26114996131753%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rkpfzhidypiarxdpalaj_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.193</text><svg x=\"88.03731831087376%\" y=\"40\" height=\"20\" width=\"2.447663300887541%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">im</text> </svg></svg><line x1=\"90.4849816117613%\" x2=\"91.24880297482862%\" y1=\"60\" y2=\"60\" id=\"_fb_rkpfzhidypiarxdpalaj_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"90.86689229329497%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rkpfzhidypiarxdpalaj_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.06</text><svg x=\"90.4849816117613%\" y=\"40\" height=\"20\" width=\"0.7638213630673221%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">minute</text> </svg></svg><line x1=\"91.24880297482862%\" x2=\"91.45943150329155%\" y1=\"60\" y2=\"60\" id=\"_fb_rkpfzhidypiarxdpalaj_ind_6\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.35411723906009%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rkpfzhidypiarxdpalaj_ind_6\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.017</text><svg x=\"91.24880297482862%\" y=\"40\" height=\"20\" width=\"0.21062852846293367%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">post</text> </svg></svg><line x1=\"91.45943150329155%\" x2=\"91.66666246935192%\" y1=\"60\" y2=\"60\" id=\"_fb_rkpfzhidypiarxdpalaj_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.56304698632174%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rkpfzhidypiarxdpalaj_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.016</text><svg x=\"91.45943150329155%\" y=\"40\" height=\"20\" width=\"0.20723096606036506%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">a</text> </svg></svg><line x1=\"91.66666246935192%\" x2=\"91.66666620716778%\" y1=\"60\" y2=\"60\" id=\"_fb_rkpfzhidypiarxdpalaj_ind_11\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.66666433825985%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rkpfzhidypiarxdpalaj_ind_11\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"91.66666246935192%\" y=\"40\" height=\"20\" width=\"3.737815859494731e-06%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><line x1=\"91.66666620716778%\" x2=\"91.66666655038189%\" y1=\"60\" y2=\"60\" id=\"_fb_rkpfzhidypiarxdpalaj_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.66666637877483%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_rkpfzhidypiarxdpalaj_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"91.66666620716778%\" y=\"40\" height=\"20\" width=\"3.432141113535181e-07%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"66.23976522876427%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"66.23976522876427%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"66.23976522876427%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"66.23976522876427%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"66.23976522876427%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"66.23976522876427%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"66.23976522876427%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"66.23976522876427%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"75.04888304771401%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"75.04888304771401%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"75.04888304771401%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"75.04888304771401%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"75.04888304771401%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"75.04888304771401%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"75.04888304771401%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"75.04888304771401%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"81.89897637869225%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"81.89897637869225%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"81.89897637869225%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"81.89897637869225%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"81.89897637869225%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"81.89897637869225%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"81.89897637869225%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"81.89897637869225%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"88.03731831087376%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"88.03731831087376%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"88.03731831087376%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"88.03731831087376%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"88.03731831087376%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"88.03731831087376%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"88.03731831087376%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"88.03731831087376%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"90.4849816117613%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.4849816117613%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.4849816117613%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.4849816117613%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.4849816117613%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.4849816117613%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.4849816117613%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.4849816117613%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.24880297482862%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.24880297482862%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.24880297482862%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.24880297482862%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.24880297482862%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.24880297482862%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.24880297482862%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.24880297482862%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.45943150329155%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.45943150329155%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.45943150329155%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.45943150329155%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.45943150329155%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.45943150329155%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.45943150329155%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.45943150329155%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.66666246935192%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.66666246935192%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.66666246935192%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.66666246935192%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.66666246935192%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.66666246935192%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.66666246935192%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.66666246935192%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.66666620716778%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.66666620716778%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.66666620716778%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.66666620716778%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.66666620716778%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.66666620716778%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.66666620716778%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.66666620716778%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"9.7145574117168%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66666655038189%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"66.23976522876427%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"9.7145574117168%\" y=\"40\" height=\"20\" width=\"56.52520781704747%\" onmouseover=\"document.getElementById('_tp_rkpfzhidypiarxdpalaj_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_rkpfzhidypiarxdpalaj_ind_9').style.opacity = 1;document.getElementById('_fb_rkpfzhidypiarxdpalaj_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rkpfzhidypiarxdpalaj_ind_9').style.textDecoration = 'none';document.getElementById('_fs_rkpfzhidypiarxdpalaj_ind_9').style.opacity = 0;document.getElementById('_fb_rkpfzhidypiarxdpalaj_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"75.04888304771401%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"66.23976522876427%\" y=\"40\" height=\"20\" width=\"8.809117818949744%\" onmouseover=\"document.getElementById('_tp_rkpfzhidypiarxdpalaj_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_rkpfzhidypiarxdpalaj_ind_10').style.opacity = 1;document.getElementById('_fb_rkpfzhidypiarxdpalaj_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rkpfzhidypiarxdpalaj_ind_10').style.textDecoration = 'none';document.getElementById('_fs_rkpfzhidypiarxdpalaj_ind_10').style.opacity = 0;document.getElementById('_fb_rkpfzhidypiarxdpalaj_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"81.89897637869225%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"75.04888304771401%\" y=\"40\" height=\"20\" width=\"6.85009333097824%\" onmouseover=\"document.getElementById('_tp_rkpfzhidypiarxdpalaj_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_rkpfzhidypiarxdpalaj_ind_2').style.opacity = 1;document.getElementById('_fb_rkpfzhidypiarxdpalaj_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rkpfzhidypiarxdpalaj_ind_2').style.textDecoration = 'none';document.getElementById('_fs_rkpfzhidypiarxdpalaj_ind_2').style.opacity = 0;document.getElementById('_fb_rkpfzhidypiarxdpalaj_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"88.03731831087376%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"81.89897637869225%\" y=\"40\" height=\"20\" width=\"6.138341932181504%\" onmouseover=\"document.getElementById('_tp_rkpfzhidypiarxdpalaj_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_rkpfzhidypiarxdpalaj_ind_8').style.opacity = 1;document.getElementById('_fb_rkpfzhidypiarxdpalaj_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rkpfzhidypiarxdpalaj_ind_8').style.textDecoration = 'none';document.getElementById('_fs_rkpfzhidypiarxdpalaj_ind_8').style.opacity = 0;document.getElementById('_fb_rkpfzhidypiarxdpalaj_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"90.4849816117613%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"88.03731831087376%\" y=\"40\" height=\"20\" width=\"2.447663300887541%\" onmouseover=\"document.getElementById('_tp_rkpfzhidypiarxdpalaj_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_rkpfzhidypiarxdpalaj_ind_1').style.opacity = 1;document.getElementById('_fb_rkpfzhidypiarxdpalaj_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rkpfzhidypiarxdpalaj_ind_1').style.textDecoration = 'none';document.getElementById('_fs_rkpfzhidypiarxdpalaj_ind_1').style.opacity = 0;document.getElementById('_fb_rkpfzhidypiarxdpalaj_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.24880297482862%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"90.4849816117613%\" y=\"40\" height=\"20\" width=\"0.7638213630673221%\" onmouseover=\"document.getElementById('_tp_rkpfzhidypiarxdpalaj_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_rkpfzhidypiarxdpalaj_ind_4').style.opacity = 1;document.getElementById('_fb_rkpfzhidypiarxdpalaj_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rkpfzhidypiarxdpalaj_ind_4').style.textDecoration = 'none';document.getElementById('_fs_rkpfzhidypiarxdpalaj_ind_4').style.opacity = 0;document.getElementById('_fb_rkpfzhidypiarxdpalaj_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.45943150329155%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.24880297482862%\" y=\"40\" height=\"20\" width=\"0.21062852846293367%\" onmouseover=\"document.getElementById('_tp_rkpfzhidypiarxdpalaj_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_rkpfzhidypiarxdpalaj_ind_6').style.opacity = 1;document.getElementById('_fb_rkpfzhidypiarxdpalaj_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rkpfzhidypiarxdpalaj_ind_6').style.textDecoration = 'none';document.getElementById('_fs_rkpfzhidypiarxdpalaj_ind_6').style.opacity = 0;document.getElementById('_fb_rkpfzhidypiarxdpalaj_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66666246935192%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.45943150329155%\" y=\"40\" height=\"20\" width=\"0.20723096606036506%\" onmouseover=\"document.getElementById('_tp_rkpfzhidypiarxdpalaj_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_rkpfzhidypiarxdpalaj_ind_3').style.opacity = 1;document.getElementById('_fb_rkpfzhidypiarxdpalaj_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rkpfzhidypiarxdpalaj_ind_3').style.textDecoration = 'none';document.getElementById('_fs_rkpfzhidypiarxdpalaj_ind_3').style.opacity = 0;document.getElementById('_fb_rkpfzhidypiarxdpalaj_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66666620716778%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.66666246935192%\" y=\"40\" height=\"20\" width=\"3.737815859494731e-06%\" onmouseover=\"document.getElementById('_tp_rkpfzhidypiarxdpalaj_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_rkpfzhidypiarxdpalaj_ind_11').style.opacity = 1;document.getElementById('_fb_rkpfzhidypiarxdpalaj_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rkpfzhidypiarxdpalaj_ind_11').style.textDecoration = 'none';document.getElementById('_fs_rkpfzhidypiarxdpalaj_ind_11').style.opacity = 0;document.getElementById('_fb_rkpfzhidypiarxdpalaj_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"91.66666620716778%\" y=\"40\" height=\"20\" width=\"3.432141113535181e-07%\" onmouseover=\"document.getElementById('_tp_rkpfzhidypiarxdpalaj_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_rkpfzhidypiarxdpalaj_ind_0').style.opacity = 1;document.getElementById('_fb_rkpfzhidypiarxdpalaj_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_rkpfzhidypiarxdpalaj_ind_0').style.textDecoration = 'none';document.getElementById('_fs_rkpfzhidypiarxdpalaj_ind_0').style.opacity = 0;document.getElementById('_fb_rkpfzhidypiarxdpalaj_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_rkpfzhidypiarxdpalaj_ind_0'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_rkpfzhidypiarxdpalaj_ind_0').style.opacity = 1; document.getElementById('_fs_rkpfzhidypiarxdpalaj_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_rkpfzhidypiarxdpalaj_ind_0').style.opacity = 0; document.getElementById('_fs_rkpfzhidypiarxdpalaj_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.193</div\n",
|
|
" ><div id='_tp_rkpfzhidypiarxdpalaj_ind_1'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03830461477520309); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_rkpfzhidypiarxdpalaj_ind_1').style.opacity = 1; document.getElementById('_fs_rkpfzhidypiarxdpalaj_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_rkpfzhidypiarxdpalaj_ind_1').style.opacity = 0; document.getElementById('_fs_rkpfzhidypiarxdpalaj_ind_1').style.opacity = 0;\"\n",
|
|
" >im </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.54</div\n",
|
|
" ><div id='_tp_rkpfzhidypiarxdpalaj_ind_2'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.11713210536739943); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_rkpfzhidypiarxdpalaj_ind_2').style.opacity = 1; document.getElementById('_fs_rkpfzhidypiarxdpalaj_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_rkpfzhidypiarxdpalaj_ind_2').style.opacity = 0; document.getElementById('_fs_rkpfzhidypiarxdpalaj_ind_2').style.opacity = 0;\"\n",
|
|
" >grabbing </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.016</div\n",
|
|
" ><div id='_tp_rkpfzhidypiarxdpalaj_ind_3'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_rkpfzhidypiarxdpalaj_ind_3').style.opacity = 1; document.getElementById('_fs_rkpfzhidypiarxdpalaj_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_rkpfzhidypiarxdpalaj_ind_3').style.opacity = 0; document.getElementById('_fs_rkpfzhidypiarxdpalaj_ind_3').style.opacity = 0;\"\n",
|
|
" >a </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.06</div\n",
|
|
" ><div id='_tp_rkpfzhidypiarxdpalaj_ind_4'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_rkpfzhidypiarxdpalaj_ind_4').style.opacity = 1; document.getElementById('_fs_rkpfzhidypiarxdpalaj_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_rkpfzhidypiarxdpalaj_ind_4').style.opacity = 0; document.getElementById('_fs_rkpfzhidypiarxdpalaj_ind_4').style.opacity = 0;\"\n",
|
|
" >minute </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.085</div\n",
|
|
" ><div id='_tp_rkpfzhidypiarxdpalaj_ind_5'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.014656367597544035); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_rkpfzhidypiarxdpalaj_ind_5').style.opacity = 1; document.getElementById('_fs_rkpfzhidypiarxdpalaj_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_rkpfzhidypiarxdpalaj_ind_5').style.opacity = 0; document.getElementById('_fs_rkpfzhidypiarxdpalaj_ind_5').style.opacity = 0;\"\n",
|
|
" >to </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.017</div\n",
|
|
" ><div id='_tp_rkpfzhidypiarxdpalaj_ind_6'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_rkpfzhidypiarxdpalaj_ind_6').style.opacity = 1; document.getElementById('_fs_rkpfzhidypiarxdpalaj_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_rkpfzhidypiarxdpalaj_ind_6').style.opacity = 0; document.getElementById('_fs_rkpfzhidypiarxdpalaj_ind_6').style.opacity = 0;\"\n",
|
|
" >post </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.024</div\n",
|
|
" ><div id='_tp_rkpfzhidypiarxdpalaj_ind_7'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_rkpfzhidypiarxdpalaj_ind_7').style.opacity = 1; document.getElementById('_fs_rkpfzhidypiarxdpalaj_ind_7').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_rkpfzhidypiarxdpalaj_ind_7').style.opacity = 0; document.getElementById('_fs_rkpfzhidypiarxdpalaj_ind_7').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.484</div\n",
|
|
" ><div id='_tp_rkpfzhidypiarxdpalaj_ind_8'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.10136660724896014); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_rkpfzhidypiarxdpalaj_ind_8').style.opacity = 1; document.getElementById('_fs_rkpfzhidypiarxdpalaj_ind_8').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_rkpfzhidypiarxdpalaj_ind_8').style.opacity = 0; document.getElementById('_fs_rkpfzhidypiarxdpalaj_ind_8').style.opacity = 0;\"\n",
|
|
" >feel </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-4.456</div\n",
|
|
" ><div id='_tp_rkpfzhidypiarxdpalaj_ind_9'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 1.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_rkpfzhidypiarxdpalaj_ind_9').style.opacity = 1; document.getElementById('_fs_rkpfzhidypiarxdpalaj_ind_9').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_rkpfzhidypiarxdpalaj_ind_9').style.opacity = 0; document.getElementById('_fs_rkpfzhidypiarxdpalaj_ind_9').style.opacity = 0;\"\n",
|
|
" >greedy </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.694</div\n",
|
|
" ><div id='_tp_rkpfzhidypiarxdpalaj_ind_10'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.14866310160427798); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_rkpfzhidypiarxdpalaj_ind_10').style.opacity = 1; document.getElementById('_fs_rkpfzhidypiarxdpalaj_ind_10').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_rkpfzhidypiarxdpalaj_ind_10').style.opacity = 0; document.getElementById('_fs_rkpfzhidypiarxdpalaj_ind_10').style.opacity = 0;\"\n",
|
|
" >wrong</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_rkpfzhidypiarxdpalaj_ind_11'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_rkpfzhidypiarxdpalaj_ind_11').style.opacity = 1; document.getElementById('_fs_rkpfzhidypiarxdpalaj_ind_11').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_rkpfzhidypiarxdpalaj_ind_11').style.opacity = 0; document.getElementById('_fs_rkpfzhidypiarxdpalaj_ind_11').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_apuwqawtzdakfvbqpgxu_output_2' style='display: none';><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"49.99634084343776%\" y1=\"33\" x2=\"49.99634084343776%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"49.99634084343776%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1</text><line x1=\"34.135128947971666%\" y1=\"33\" x2=\"34.135128947971666%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"34.135128947971666%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"18.273917052505578%\" y1=\"33\" x2=\"18.273917052505578%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"18.273917052505578%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7</text><line x1=\"65.85755273890385%\" y1=\"33\" x2=\"65.85755273890385%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"65.85755273890385%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">2</text><line x1=\"81.71876463436993%\" y1=\"33\" x2=\"81.71876463436993%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"81.71876463436993%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">5</text><line x1=\"44.23283873123403%\" y1=\"33\" x2=\"44.23283873123403%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"44.23283873123403%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2.09011</text><text x=\"44.23283873123403%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2.09011</text><text x=\"44.23283873123403%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"22.634623970064172%\" y1=\"33\" x2=\"22.634623970064172%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"22.634623970064172%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.17521</text><text x=\"22.634623970064172%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.17521</text><text x=\"22.634623970064172%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">love</tspan>(inputs)</text><rect x=\"21.912655018028598%\" width=\"0.7219689520355754%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"22.108930456611795%\" x2=\"22.634623970064172%\" y1=\"60\" y2=\"60\" id=\"_fb_qyzwgxnojmbwqezwavhx_ind_4\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"22.371777213337985%\" y=\"71\" font-size=\"12px\" id=\"_fs_qyzwgxnojmbwqezwavhx_ind_4\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.099</text><svg x=\"22.108930456611795%\" y=\"40\" height=\"20\" width=\"0.5256935134523779%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">minute</text> </svg></svg><line x1=\"21.912655018028595%\" x2=\"22.108930456611795%\" y1=\"60\" y2=\"60\" id=\"_fb_qyzwgxnojmbwqezwavhx_ind_7\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"22.010792737320195%\" y=\"71\" font-size=\"12px\" id=\"_fs_qyzwgxnojmbwqezwavhx_ind_7\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.037</text><svg x=\"21.912655018028595%\" y=\"40\" height=\"20\" width=\"0.19627543858319996%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"22.108930456611795%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"22.108930456611795%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"22.108930456611795%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"22.108930456611795%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"22.108930456611795%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"22.108930456611795%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"22.108930456611795%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"22.108930456611795%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"22.634623970064172%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"21.912655018028598%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"22.634623970064172%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"22.108930456611795%\" y=\"40\" height=\"20\" width=\"0.5256935134523779%\" onmouseover=\"document.getElementById('_tp_qyzwgxnojmbwqezwavhx_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_qyzwgxnojmbwqezwavhx_ind_4').style.opacity = 1;document.getElementById('_fb_qyzwgxnojmbwqezwavhx_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qyzwgxnojmbwqezwavhx_ind_4').style.textDecoration = 'none';document.getElementById('_fs_qyzwgxnojmbwqezwavhx_ind_4').style.opacity = 0;document.getElementById('_fb_qyzwgxnojmbwqezwavhx_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"21.912655018028595%\" y=\"40\" height=\"20\" width=\"0.19627543858319996%\" onmouseover=\"document.getElementById('_tp_qyzwgxnojmbwqezwavhx_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_qyzwgxnojmbwqezwavhx_ind_7').style.opacity = 1;document.getElementById('_fb_qyzwgxnojmbwqezwavhx_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qyzwgxnojmbwqezwavhx_ind_7').style.textDecoration = 'none';document.getElementById('_fs_qyzwgxnojmbwqezwavhx_ind_7').style.opacity = 0;document.getElementById('_fb_qyzwgxnojmbwqezwavhx_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"22.634623970064172%\" width=\"22.320183713205438%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"22.634623970064172%\" x2=\"32.74179451365244%\" y1=\"60\" y2=\"60\" id=\"_fb_qyzwgxnojmbwqezwavhx_ind_9\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"27.688209241858303%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_qyzwgxnojmbwqezwavhx_ind_9\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.912</text><svg x=\"22.634623970064172%\" y=\"40\" height=\"20\" width=\"10.107170543588264%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">greedy</text> </svg></svg><line x1=\"32.74179451365244%\" x2=\"38.13044631737365%\" y1=\"60\" y2=\"60\" id=\"_fb_qyzwgxnojmbwqezwavhx_ind_8\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"35.436120415513045%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_qyzwgxnojmbwqezwavhx_ind_8\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.019</text><svg x=\"32.74179451365244%\" y=\"40\" height=\"20\" width=\"5.38865180372121%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"38.13044631737365%\" x2=\"40.80495970003733%\" y1=\"60\" y2=\"60\" id=\"_fb_qyzwgxnojmbwqezwavhx_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"39.467703008705485%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_qyzwgxnojmbwqezwavhx_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.506</text><svg x=\"38.13044631737365%\" y=\"40\" height=\"20\" width=\"2.674513382663683%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">grabbing</text> </svg></svg><line x1=\"40.80495970003733%\" x2=\"42.66160751757321%\" y1=\"60\" y2=\"60\" id=\"_fb_qyzwgxnojmbwqezwavhx_ind_10\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"41.733283608805266%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_qyzwgxnojmbwqezwavhx_ind_10\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.351</text><svg x=\"40.80495970003733%\" y=\"40\" height=\"20\" width=\"1.8566478175358796%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">wrong</text> </svg></svg><line x1=\"42.66160751757321%\" x2=\"43.50009378060216%\" y1=\"60\" y2=\"60\" id=\"_fb_qyzwgxnojmbwqezwavhx_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"43.08085064908768%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_qyzwgxnojmbwqezwavhx_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.159</text><svg x=\"42.66160751757321%\" y=\"40\" height=\"20\" width=\"0.8384862630289476%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">im</text> </svg></svg><line x1=\"43.50009378060216%\" x2=\"44.16599247185118%\" y1=\"60\" y2=\"60\" id=\"_fb_qyzwgxnojmbwqezwavhx_ind_6\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"43.83304312622667%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_qyzwgxnojmbwqezwavhx_ind_6\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.126</text><svg x=\"43.50009378060216%\" y=\"40\" height=\"20\" width=\"0.6658986912490263%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">post</text> </svg></svg><line x1=\"44.16599247185118%\" x2=\"44.63184223441346%\" y1=\"60\" y2=\"60\" id=\"_fb_qyzwgxnojmbwqezwavhx_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"44.39891735313232%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_qyzwgxnojmbwqezwavhx_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.088</text><svg x=\"44.16599247185118%\" y=\"40\" height=\"20\" width=\"0.4658497625622786%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><line x1=\"44.63184223441346%\" x2=\"44.95480562180521%\" y1=\"60\" y2=\"60\" id=\"_fb_qyzwgxnojmbwqezwavhx_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"44.79332392810933%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_qyzwgxnojmbwqezwavhx_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.061</text><svg x=\"44.63184223441346%\" y=\"40\" height=\"20\" width=\"0.322963387391745%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">a</text> </svg></svg><line x1=\"44.95480562180521%\" x2=\"44.95480722141469%\" y1=\"60\" y2=\"60\" id=\"_fb_qyzwgxnojmbwqezwavhx_ind_11\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"44.954806421609945%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_qyzwgxnojmbwqezwavhx_ind_11\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"44.95480562180521%\" y=\"40\" height=\"20\" width=\"1.5996094830939e-06%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><line x1=\"44.95480722141469%\" x2=\"44.954807683269614%\" y1=\"60\" y2=\"60\" id=\"_fb_qyzwgxnojmbwqezwavhx_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"44.95480745234215%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_qyzwgxnojmbwqezwavhx_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"44.95480722141469%\" y=\"40\" height=\"20\" width=\"4.618549240831271e-07%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"32.74179451365244%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"32.74179451365244%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"32.74179451365244%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"32.74179451365244%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"32.74179451365244%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"32.74179451365244%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"32.74179451365244%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"32.74179451365244%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"38.13044631737365%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"38.13044631737365%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"38.13044631737365%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"38.13044631737365%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"38.13044631737365%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"38.13044631737365%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"38.13044631737365%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"38.13044631737365%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"40.80495970003733%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"40.80495970003733%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"40.80495970003733%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"40.80495970003733%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"40.80495970003733%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"40.80495970003733%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"40.80495970003733%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"40.80495970003733%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"42.66160751757321%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"42.66160751757321%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"42.66160751757321%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"42.66160751757321%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"42.66160751757321%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"42.66160751757321%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"42.66160751757321%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"42.66160751757321%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"43.50009378060216%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"43.50009378060216%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"43.50009378060216%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"43.50009378060216%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"43.50009378060216%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"43.50009378060216%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"43.50009378060216%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"43.50009378060216%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"44.16599247185118%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"44.16599247185118%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"44.16599247185118%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"44.16599247185118%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"44.16599247185118%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"44.16599247185118%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"44.16599247185118%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"44.16599247185118%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"44.63184223441346%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"44.63184223441346%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"44.63184223441346%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"44.63184223441346%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"44.63184223441346%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"44.63184223441346%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"44.63184223441346%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"44.63184223441346%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"44.95480562180521%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"44.95480562180521%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"44.95480562180521%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"44.95480562180521%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"44.95480562180521%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"44.95480562180521%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"44.95480562180521%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"44.95480562180521%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"44.95480722141469%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"44.95480722141469%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"44.95480722141469%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"44.95480722141469%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"44.95480722141469%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"44.95480722141469%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"44.95480722141469%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"44.95480722141469%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"22.634623970064172%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"44.954807683269614%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"32.74179451365244%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"22.634623970064172%\" y=\"40\" height=\"20\" width=\"10.107170543588264%\" onmouseover=\"document.getElementById('_tp_qyzwgxnojmbwqezwavhx_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_qyzwgxnojmbwqezwavhx_ind_9').style.opacity = 1;document.getElementById('_fb_qyzwgxnojmbwqezwavhx_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qyzwgxnojmbwqezwavhx_ind_9').style.textDecoration = 'none';document.getElementById('_fs_qyzwgxnojmbwqezwavhx_ind_9').style.opacity = 0;document.getElementById('_fb_qyzwgxnojmbwqezwavhx_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"38.13044631737365%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"32.74179451365244%\" y=\"40\" height=\"20\" width=\"5.38865180372121%\" onmouseover=\"document.getElementById('_tp_qyzwgxnojmbwqezwavhx_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_qyzwgxnojmbwqezwavhx_ind_8').style.opacity = 1;document.getElementById('_fb_qyzwgxnojmbwqezwavhx_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qyzwgxnojmbwqezwavhx_ind_8').style.textDecoration = 'none';document.getElementById('_fs_qyzwgxnojmbwqezwavhx_ind_8').style.opacity = 0;document.getElementById('_fb_qyzwgxnojmbwqezwavhx_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"40.80495970003733%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"38.13044631737365%\" y=\"40\" height=\"20\" width=\"2.674513382663683%\" onmouseover=\"document.getElementById('_tp_qyzwgxnojmbwqezwavhx_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_qyzwgxnojmbwqezwavhx_ind_2').style.opacity = 1;document.getElementById('_fb_qyzwgxnojmbwqezwavhx_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qyzwgxnojmbwqezwavhx_ind_2').style.textDecoration = 'none';document.getElementById('_fs_qyzwgxnojmbwqezwavhx_ind_2').style.opacity = 0;document.getElementById('_fb_qyzwgxnojmbwqezwavhx_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"42.66160751757321%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"40.80495970003733%\" y=\"40\" height=\"20\" width=\"1.8566478175358796%\" onmouseover=\"document.getElementById('_tp_qyzwgxnojmbwqezwavhx_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_qyzwgxnojmbwqezwavhx_ind_10').style.opacity = 1;document.getElementById('_fb_qyzwgxnojmbwqezwavhx_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qyzwgxnojmbwqezwavhx_ind_10').style.textDecoration = 'none';document.getElementById('_fs_qyzwgxnojmbwqezwavhx_ind_10').style.opacity = 0;document.getElementById('_fb_qyzwgxnojmbwqezwavhx_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"43.50009378060216%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"42.66160751757321%\" y=\"40\" height=\"20\" width=\"0.8384862630289476%\" onmouseover=\"document.getElementById('_tp_qyzwgxnojmbwqezwavhx_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_qyzwgxnojmbwqezwavhx_ind_1').style.opacity = 1;document.getElementById('_fb_qyzwgxnojmbwqezwavhx_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qyzwgxnojmbwqezwavhx_ind_1').style.textDecoration = 'none';document.getElementById('_fs_qyzwgxnojmbwqezwavhx_ind_1').style.opacity = 0;document.getElementById('_fb_qyzwgxnojmbwqezwavhx_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"44.16599247185118%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"43.50009378060216%\" y=\"40\" height=\"20\" width=\"0.6658986912490263%\" onmouseover=\"document.getElementById('_tp_qyzwgxnojmbwqezwavhx_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_qyzwgxnojmbwqezwavhx_ind_6').style.opacity = 1;document.getElementById('_fb_qyzwgxnojmbwqezwavhx_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qyzwgxnojmbwqezwavhx_ind_6').style.textDecoration = 'none';document.getElementById('_fs_qyzwgxnojmbwqezwavhx_ind_6').style.opacity = 0;document.getElementById('_fb_qyzwgxnojmbwqezwavhx_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"44.63184223441346%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"44.16599247185118%\" y=\"40\" height=\"20\" width=\"0.4658497625622786%\" onmouseover=\"document.getElementById('_tp_qyzwgxnojmbwqezwavhx_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_qyzwgxnojmbwqezwavhx_ind_5').style.opacity = 1;document.getElementById('_fb_qyzwgxnojmbwqezwavhx_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qyzwgxnojmbwqezwavhx_ind_5').style.textDecoration = 'none';document.getElementById('_fs_qyzwgxnojmbwqezwavhx_ind_5').style.opacity = 0;document.getElementById('_fb_qyzwgxnojmbwqezwavhx_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"44.95480562180521%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"44.63184223441346%\" y=\"40\" height=\"20\" width=\"0.322963387391745%\" onmouseover=\"document.getElementById('_tp_qyzwgxnojmbwqezwavhx_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_qyzwgxnojmbwqezwavhx_ind_3').style.opacity = 1;document.getElementById('_fb_qyzwgxnojmbwqezwavhx_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qyzwgxnojmbwqezwavhx_ind_3').style.textDecoration = 'none';document.getElementById('_fs_qyzwgxnojmbwqezwavhx_ind_3').style.opacity = 0;document.getElementById('_fb_qyzwgxnojmbwqezwavhx_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"44.95480722141469%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"44.95480562180521%\" y=\"40\" height=\"20\" width=\"1.5996094830939e-06%\" onmouseover=\"document.getElementById('_tp_qyzwgxnojmbwqezwavhx_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_qyzwgxnojmbwqezwavhx_ind_11').style.opacity = 1;document.getElementById('_fb_qyzwgxnojmbwqezwavhx_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qyzwgxnojmbwqezwavhx_ind_11').style.textDecoration = 'none';document.getElementById('_fs_qyzwgxnojmbwqezwavhx_ind_11').style.opacity = 0;document.getElementById('_fb_qyzwgxnojmbwqezwavhx_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"44.95480722141469%\" y=\"40\" height=\"20\" width=\"4.618549240831271e-07%\" onmouseover=\"document.getElementById('_tp_qyzwgxnojmbwqezwavhx_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_qyzwgxnojmbwqezwavhx_ind_0').style.opacity = 1;document.getElementById('_fb_qyzwgxnojmbwqezwavhx_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_qyzwgxnojmbwqezwavhx_ind_0').style.textDecoration = 'none';document.getElementById('_fs_qyzwgxnojmbwqezwavhx_ind_0').style.opacity = 0;document.getElementById('_fb_qyzwgxnojmbwqezwavhx_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_qyzwgxnojmbwqezwavhx_ind_0'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_qyzwgxnojmbwqezwavhx_ind_0').style.opacity = 1; document.getElementById('_fs_qyzwgxnojmbwqezwavhx_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_qyzwgxnojmbwqezwavhx_ind_0').style.opacity = 0; document.getElementById('_fs_qyzwgxnojmbwqezwavhx_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.159</div\n",
|
|
" ><div id='_tp_qyzwgxnojmbwqezwavhx_ind_1'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_qyzwgxnojmbwqezwavhx_ind_1').style.opacity = 1; document.getElementById('_fs_qyzwgxnojmbwqezwavhx_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_qyzwgxnojmbwqezwavhx_ind_1').style.opacity = 0; document.getElementById('_fs_qyzwgxnojmbwqezwavhx_ind_1').style.opacity = 0;\"\n",
|
|
" >im </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.506</div\n",
|
|
" ><div id='_tp_qyzwgxnojmbwqezwavhx_ind_2'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.06983561101208147); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_qyzwgxnojmbwqezwavhx_ind_2').style.opacity = 1; document.getElementById('_fs_qyzwgxnojmbwqezwavhx_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_qyzwgxnojmbwqezwavhx_ind_2').style.opacity = 0; document.getElementById('_fs_qyzwgxnojmbwqezwavhx_ind_2').style.opacity = 0;\"\n",
|
|
" >grabbing </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.061</div\n",
|
|
" ><div id='_tp_qyzwgxnojmbwqezwavhx_ind_3'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_qyzwgxnojmbwqezwavhx_ind_3').style.opacity = 1; document.getElementById('_fs_qyzwgxnojmbwqezwavhx_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_qyzwgxnojmbwqezwavhx_ind_3').style.opacity = 0; document.getElementById('_fs_qyzwgxnojmbwqezwavhx_ind_3').style.opacity = 0;\"\n",
|
|
" >a </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.099</div\n",
|
|
" ><div id='_tp_qyzwgxnojmbwqezwavhx_ind_4'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_qyzwgxnojmbwqezwavhx_ind_4').style.opacity = 1; document.getElementById('_fs_qyzwgxnojmbwqezwavhx_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_qyzwgxnojmbwqezwavhx_ind_4').style.opacity = 0; document.getElementById('_fs_qyzwgxnojmbwqezwavhx_ind_4').style.opacity = 0;\"\n",
|
|
" >minute </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.088</div\n",
|
|
" ><div id='_tp_qyzwgxnojmbwqezwavhx_ind_5'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_qyzwgxnojmbwqezwavhx_ind_5').style.opacity = 1; document.getElementById('_fs_qyzwgxnojmbwqezwavhx_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_qyzwgxnojmbwqezwavhx_ind_5').style.opacity = 0; document.getElementById('_fs_qyzwgxnojmbwqezwavhx_ind_5').style.opacity = 0;\"\n",
|
|
" >to </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.126</div\n",
|
|
" ><div id='_tp_qyzwgxnojmbwqezwavhx_ind_6'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_qyzwgxnojmbwqezwavhx_ind_6').style.opacity = 1; document.getElementById('_fs_qyzwgxnojmbwqezwavhx_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_qyzwgxnojmbwqezwavhx_ind_6').style.opacity = 0; document.getElementById('_fs_qyzwgxnojmbwqezwavhx_ind_6').style.opacity = 0;\"\n",
|
|
" >post </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.037</div\n",
|
|
" ><div id='_tp_qyzwgxnojmbwqezwavhx_ind_7'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_qyzwgxnojmbwqezwavhx_ind_7').style.opacity = 1; document.getElementById('_fs_qyzwgxnojmbwqezwavhx_ind_7').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_qyzwgxnojmbwqezwavhx_ind_7').style.opacity = 0; document.getElementById('_fs_qyzwgxnojmbwqezwavhx_ind_7').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.019</div\n",
|
|
" ><div id='_tp_qyzwgxnojmbwqezwavhx_ind_8'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.14078035254505836); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_qyzwgxnojmbwqezwavhx_ind_8').style.opacity = 1; document.getElementById('_fs_qyzwgxnojmbwqezwavhx_ind_8').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_qyzwgxnojmbwqezwavhx_ind_8').style.opacity = 0; document.getElementById('_fs_qyzwgxnojmbwqezwavhx_ind_8').style.opacity = 0;\"\n",
|
|
" >feel </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.912</div\n",
|
|
" ><div id='_tp_qyzwgxnojmbwqezwavhx_ind_9'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.27478708655179246); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_qyzwgxnojmbwqezwavhx_ind_9').style.opacity = 1; document.getElementById('_fs_qyzwgxnojmbwqezwavhx_ind_9').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_qyzwgxnojmbwqezwavhx_ind_9').style.opacity = 0; document.getElementById('_fs_qyzwgxnojmbwqezwavhx_ind_9').style.opacity = 0;\"\n",
|
|
" >greedy </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.351</div\n",
|
|
" ><div id='_tp_qyzwgxnojmbwqezwavhx_ind_10'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.04618736383442258); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_qyzwgxnojmbwqezwavhx_ind_10').style.opacity = 1; document.getElementById('_fs_qyzwgxnojmbwqezwavhx_ind_10').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_qyzwgxnojmbwqezwavhx_ind_10').style.opacity = 0; document.getElementById('_fs_qyzwgxnojmbwqezwavhx_ind_10').style.opacity = 0;\"\n",
|
|
" >wrong</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_qyzwgxnojmbwqezwavhx_ind_11'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_qyzwgxnojmbwqezwavhx_ind_11').style.opacity = 1; document.getElementById('_fs_qyzwgxnojmbwqezwavhx_ind_11').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_qyzwgxnojmbwqezwavhx_ind_11').style.opacity = 0; document.getElementById('_fs_qyzwgxnojmbwqezwavhx_ind_11').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_apuwqawtzdakfvbqpgxu_output_2_zoom' style='display: none;'><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"52.53664656732977%\" y1=\"33\" x2=\"52.53664656732977%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"52.53664656732977%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"33.41563713401071%\" y1=\"33\" x2=\"33.41563713401071%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"33.41563713401071%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-5</text><line x1=\"14.29462770069164%\" y1=\"33\" x2=\"14.29462770069164%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"14.29462770069164%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6</text><line x1=\"71.65765600064883%\" y1=\"33\" x2=\"71.65765600064883%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"71.65765600064883%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-3</text><line x1=\"90.7786654339679%\" y1=\"33\" x2=\"90.7786654339679%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"90.7786654339679%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2</text><line x1=\"89.05562228491713%\" y1=\"33\" x2=\"89.05562228491713%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"89.05562228491713%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2.09011</text><text x=\"89.05562228491713%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2.09011</text><text x=\"89.05562228491713%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"10.944377523872767%\" y1=\"33\" x2=\"10.944377523872767%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"10.944377523872767%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.17521</text><text x=\"10.944377523872767%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.17521</text><text x=\"10.944377523872767%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">love</tspan>(inputs)</text><rect x=\"8.333333317399156%\" width=\"2.6110442064736175%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"9.043175264675117%\" x2=\"10.944377523872767%\" y1=\"60\" y2=\"60\" id=\"_fb_kzohkoefhxbiugempgls_ind_4\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"9.993776394273942%\" y=\"71\" font-size=\"12px\" id=\"_fs_kzohkoefhxbiugempgls_ind_4\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.099</text><svg x=\"9.043175264675117%\" y=\"40\" height=\"20\" width=\"1.9012022591976496%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">minute</text> </svg></svg><line x1=\"8.333333317399138%\" x2=\"9.043175264675117%\" y1=\"60\" y2=\"60\" id=\"_fb_kzohkoefhxbiugempgls_ind_7\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.688254291037127%\" y=\"71\" font-size=\"12px\" id=\"_fs_kzohkoefhxbiugempgls_ind_7\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.037</text><svg x=\"8.333333317399138%\" y=\"40\" height=\"20\" width=\"0.7098419472759794%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"9.043175264675117%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"9.043175264675117%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"9.043175264675117%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"9.043175264675117%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"9.043175264675117%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"9.043175264675117%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"9.043175264675117%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"9.043175264675117%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"10.944377523872767%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.333333317399156%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"10.944377523872767%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"9.043175264675117%\" y=\"40\" height=\"20\" width=\"1.9012022591976496%\" onmouseover=\"document.getElementById('_tp_kzohkoefhxbiugempgls_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_kzohkoefhxbiugempgls_ind_4').style.opacity = 1;document.getElementById('_fb_kzohkoefhxbiugempgls_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kzohkoefhxbiugempgls_ind_4').style.textDecoration = 'none';document.getElementById('_fs_kzohkoefhxbiugempgls_ind_4').style.opacity = 0;document.getElementById('_fb_kzohkoefhxbiugempgls_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"8.333333317399138%\" y=\"40\" height=\"20\" width=\"0.7098419472759794%\" onmouseover=\"document.getElementById('_tp_kzohkoefhxbiugempgls_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_kzohkoefhxbiugempgls_ind_7').style.opacity = 1;document.getElementById('_fb_kzohkoefhxbiugempgls_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kzohkoefhxbiugempgls_ind_7').style.textDecoration = 'none';document.getElementById('_fs_kzohkoefhxbiugempgls_ind_7').style.opacity = 0;document.getElementById('_fb_kzohkoefhxbiugempgls_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"10.944377523872767%\" width=\"80.72228896751798%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"10.944377523872767%\" x2=\"47.49756865109527%\" y1=\"60\" y2=\"60\" id=\"_fb_kzohkoefhxbiugempgls_ind_9\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"29.22097308748402%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kzohkoefhxbiugempgls_ind_9\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.912</text><svg x=\"10.944377523872767%\" y=\"40\" height=\"20\" width=\"36.553191127222505%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">greedy</text> </svg></svg><line x1=\"47.49756865109527%\" x2=\"66.9859525118414%\" y1=\"60\" y2=\"60\" id=\"_fb_kzohkoefhxbiugempgls_ind_8\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"57.24176058146834%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kzohkoefhxbiugempgls_ind_8\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.019</text><svg x=\"47.49756865109527%\" y=\"40\" height=\"20\" width=\"19.488383860746133%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"66.9859525118414%\" x2=\"76.65849127303187%\" y1=\"60\" y2=\"60\" id=\"_fb_kzohkoefhxbiugempgls_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"71.82222189243663%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kzohkoefhxbiugempgls_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.506</text><svg x=\"66.9859525118414%\" y=\"40\" height=\"20\" width=\"9.672538761190467%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">grabbing</text> </svg></svg><line x1=\"76.65849127303187%\" x2=\"83.37316994968508%\" y1=\"60\" y2=\"60\" id=\"_fb_kzohkoefhxbiugempgls_ind_10\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"80.01583061135847%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kzohkoefhxbiugempgls_ind_10\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.351</text><svg x=\"76.65849127303187%\" y=\"40\" height=\"20\" width=\"6.714678676653207%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">wrong</text> </svg></svg><line x1=\"83.37316994968508%\" x2=\"86.40560603037343%\" y1=\"60\" y2=\"60\" id=\"_fb_kzohkoefhxbiugempgls_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"84.88938799002926%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kzohkoefhxbiugempgls_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.159</text><svg x=\"83.37316994968508%\" y=\"40\" height=\"20\" width=\"3.032436080688356%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">im</text> </svg></svg><line x1=\"86.40560603037343%\" x2=\"88.81386876103787%\" y1=\"60\" y2=\"60\" id=\"_fb_kzohkoefhxbiugempgls_ind_6\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"87.60973739570565%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kzohkoefhxbiugempgls_ind_6\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.126</text><svg x=\"86.40560603037343%\" y=\"40\" height=\"20\" width=\"2.4082627306644326%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">post</text> </svg></svg><line x1=\"88.81386876103787%\" x2=\"90.49864249015162%\" y1=\"60\" y2=\"60\" id=\"_fb_kzohkoefhxbiugempgls_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"89.65625562559475%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kzohkoefhxbiugempgls_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.088</text><svg x=\"88.81386876103787%\" y=\"40\" height=\"20\" width=\"1.6847737291137577%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><line x1=\"90.49864249015162%\" x2=\"91.66665903598054%\" y1=\"60\" y2=\"60\" id=\"_fb_kzohkoefhxbiugempgls_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.08265076306608%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kzohkoefhxbiugempgls_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.061</text><svg x=\"90.49864249015162%\" y=\"40\" height=\"20\" width=\"1.1680165458289196%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">a</text> </svg></svg><line x1=\"91.66665903598054%\" x2=\"91.6666648210646%\" y1=\"60\" y2=\"60\" id=\"_fb_kzohkoefhxbiugempgls_ind_11\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.66666192852257%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kzohkoefhxbiugempgls_ind_11\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"91.66665903598054%\" y=\"40\" height=\"20\" width=\"5.78508405624234e-06%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><line x1=\"91.6666648210646%\" x2=\"91.66666649139076%\" y1=\"60\" y2=\"60\" id=\"_fb_kzohkoefhxbiugempgls_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.66666565622768%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_kzohkoefhxbiugempgls_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"91.6666648210646%\" y=\"40\" height=\"20\" width=\"1.6703261564998684e-06%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"47.49756865109527%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"47.49756865109527%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"47.49756865109527%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"47.49756865109527%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"47.49756865109527%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"47.49756865109527%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"47.49756865109527%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"47.49756865109527%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"66.9859525118414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"66.9859525118414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"66.9859525118414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"66.9859525118414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"66.9859525118414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"66.9859525118414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"66.9859525118414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"66.9859525118414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"76.65849127303187%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"76.65849127303187%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"76.65849127303187%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"76.65849127303187%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"76.65849127303187%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"76.65849127303187%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"76.65849127303187%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"76.65849127303187%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"83.37316994968508%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"83.37316994968508%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"83.37316994968508%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"83.37316994968508%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"83.37316994968508%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"83.37316994968508%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"83.37316994968508%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"83.37316994968508%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"86.40560603037343%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"86.40560603037343%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"86.40560603037343%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"86.40560603037343%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"86.40560603037343%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"86.40560603037343%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"86.40560603037343%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"86.40560603037343%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"88.81386876103787%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"88.81386876103787%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"88.81386876103787%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"88.81386876103787%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"88.81386876103787%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"88.81386876103787%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"88.81386876103787%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"88.81386876103787%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"90.49864249015162%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.49864249015162%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.49864249015162%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.49864249015162%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.49864249015162%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.49864249015162%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.49864249015162%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.49864249015162%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.66665903598054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.66665903598054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.66665903598054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.66665903598054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.66665903598054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.66665903598054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.66665903598054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.66665903598054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.6666648210646%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.6666648210646%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.6666648210646%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.6666648210646%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.6666648210646%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.6666648210646%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.6666648210646%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.6666648210646%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"10.944377523872767%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66666649139076%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"47.49756865109527%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"10.944377523872767%\" y=\"40\" height=\"20\" width=\"36.553191127222505%\" onmouseover=\"document.getElementById('_tp_kzohkoefhxbiugempgls_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_kzohkoefhxbiugempgls_ind_9').style.opacity = 1;document.getElementById('_fb_kzohkoefhxbiugempgls_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kzohkoefhxbiugempgls_ind_9').style.textDecoration = 'none';document.getElementById('_fs_kzohkoefhxbiugempgls_ind_9').style.opacity = 0;document.getElementById('_fb_kzohkoefhxbiugempgls_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"66.9859525118414%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"47.49756865109527%\" y=\"40\" height=\"20\" width=\"19.488383860746133%\" onmouseover=\"document.getElementById('_tp_kzohkoefhxbiugempgls_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_kzohkoefhxbiugempgls_ind_8').style.opacity = 1;document.getElementById('_fb_kzohkoefhxbiugempgls_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kzohkoefhxbiugempgls_ind_8').style.textDecoration = 'none';document.getElementById('_fs_kzohkoefhxbiugempgls_ind_8').style.opacity = 0;document.getElementById('_fb_kzohkoefhxbiugempgls_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"76.65849127303187%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"66.9859525118414%\" y=\"40\" height=\"20\" width=\"9.672538761190467%\" onmouseover=\"document.getElementById('_tp_kzohkoefhxbiugempgls_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_kzohkoefhxbiugempgls_ind_2').style.opacity = 1;document.getElementById('_fb_kzohkoefhxbiugempgls_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kzohkoefhxbiugempgls_ind_2').style.textDecoration = 'none';document.getElementById('_fs_kzohkoefhxbiugempgls_ind_2').style.opacity = 0;document.getElementById('_fb_kzohkoefhxbiugempgls_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"83.37316994968508%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"76.65849127303187%\" y=\"40\" height=\"20\" width=\"6.714678676653207%\" onmouseover=\"document.getElementById('_tp_kzohkoefhxbiugempgls_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_kzohkoefhxbiugempgls_ind_10').style.opacity = 1;document.getElementById('_fb_kzohkoefhxbiugempgls_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kzohkoefhxbiugempgls_ind_10').style.textDecoration = 'none';document.getElementById('_fs_kzohkoefhxbiugempgls_ind_10').style.opacity = 0;document.getElementById('_fb_kzohkoefhxbiugempgls_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"86.40560603037343%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"83.37316994968508%\" y=\"40\" height=\"20\" width=\"3.032436080688356%\" onmouseover=\"document.getElementById('_tp_kzohkoefhxbiugempgls_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_kzohkoefhxbiugempgls_ind_1').style.opacity = 1;document.getElementById('_fb_kzohkoefhxbiugempgls_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kzohkoefhxbiugempgls_ind_1').style.textDecoration = 'none';document.getElementById('_fs_kzohkoefhxbiugempgls_ind_1').style.opacity = 0;document.getElementById('_fb_kzohkoefhxbiugempgls_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"88.81386876103787%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"86.40560603037343%\" y=\"40\" height=\"20\" width=\"2.4082627306644326%\" onmouseover=\"document.getElementById('_tp_kzohkoefhxbiugempgls_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_kzohkoefhxbiugempgls_ind_6').style.opacity = 1;document.getElementById('_fb_kzohkoefhxbiugempgls_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kzohkoefhxbiugempgls_ind_6').style.textDecoration = 'none';document.getElementById('_fs_kzohkoefhxbiugempgls_ind_6').style.opacity = 0;document.getElementById('_fb_kzohkoefhxbiugempgls_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"90.49864249015162%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"88.81386876103787%\" y=\"40\" height=\"20\" width=\"1.6847737291137577%\" onmouseover=\"document.getElementById('_tp_kzohkoefhxbiugempgls_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_kzohkoefhxbiugempgls_ind_5').style.opacity = 1;document.getElementById('_fb_kzohkoefhxbiugempgls_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kzohkoefhxbiugempgls_ind_5').style.textDecoration = 'none';document.getElementById('_fs_kzohkoefhxbiugempgls_ind_5').style.opacity = 0;document.getElementById('_fb_kzohkoefhxbiugempgls_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66665903598054%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"90.49864249015162%\" y=\"40\" height=\"20\" width=\"1.1680165458289196%\" onmouseover=\"document.getElementById('_tp_kzohkoefhxbiugempgls_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_kzohkoefhxbiugempgls_ind_3').style.opacity = 1;document.getElementById('_fb_kzohkoefhxbiugempgls_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kzohkoefhxbiugempgls_ind_3').style.textDecoration = 'none';document.getElementById('_fs_kzohkoefhxbiugempgls_ind_3').style.opacity = 0;document.getElementById('_fb_kzohkoefhxbiugempgls_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.6666648210646%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.66665903598054%\" y=\"40\" height=\"20\" width=\"5.78508405624234e-06%\" onmouseover=\"document.getElementById('_tp_kzohkoefhxbiugempgls_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_kzohkoefhxbiugempgls_ind_11').style.opacity = 1;document.getElementById('_fb_kzohkoefhxbiugempgls_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kzohkoefhxbiugempgls_ind_11').style.textDecoration = 'none';document.getElementById('_fs_kzohkoefhxbiugempgls_ind_11').style.opacity = 0;document.getElementById('_fb_kzohkoefhxbiugempgls_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"91.6666648210646%\" y=\"40\" height=\"20\" width=\"1.6703261564998684e-06%\" onmouseover=\"document.getElementById('_tp_kzohkoefhxbiugempgls_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_kzohkoefhxbiugempgls_ind_0').style.opacity = 1;document.getElementById('_fb_kzohkoefhxbiugempgls_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_kzohkoefhxbiugempgls_ind_0').style.textDecoration = 'none';document.getElementById('_fs_kzohkoefhxbiugempgls_ind_0').style.opacity = 0;document.getElementById('_fb_kzohkoefhxbiugempgls_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_kzohkoefhxbiugempgls_ind_0'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_kzohkoefhxbiugempgls_ind_0').style.opacity = 1; document.getElementById('_fs_kzohkoefhxbiugempgls_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_kzohkoefhxbiugempgls_ind_0').style.opacity = 0; document.getElementById('_fs_kzohkoefhxbiugempgls_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.159</div\n",
|
|
" ><div id='_tp_kzohkoefhxbiugempgls_ind_1'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.07771836007130117); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_kzohkoefhxbiugempgls_ind_1').style.opacity = 1; document.getElementById('_fs_kzohkoefhxbiugempgls_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_kzohkoefhxbiugempgls_ind_1').style.opacity = 0; document.getElementById('_fs_kzohkoefhxbiugempgls_ind_1').style.opacity = 0;\"\n",
|
|
" >im </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.506</div\n",
|
|
" ><div id='_tp_kzohkoefhxbiugempgls_ind_2'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.25902158843335304); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_kzohkoefhxbiugempgls_ind_2').style.opacity = 1; document.getElementById('_fs_kzohkoefhxbiugempgls_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_kzohkoefhxbiugempgls_ind_2').style.opacity = 0; document.getElementById('_fs_kzohkoefhxbiugempgls_ind_2').style.opacity = 0;\"\n",
|
|
" >grabbing </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.061</div\n",
|
|
" ><div id='_tp_kzohkoefhxbiugempgls_ind_3'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03042186571598325); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_kzohkoefhxbiugempgls_ind_3').style.opacity = 1; document.getElementById('_fs_kzohkoefhxbiugempgls_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_kzohkoefhxbiugempgls_ind_3').style.opacity = 0; document.getElementById('_fs_kzohkoefhxbiugempgls_ind_3').style.opacity = 0;\"\n",
|
|
" >a </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.099</div\n",
|
|
" ><div id='_tp_kzohkoefhxbiugempgls_ind_4'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.04618736383442265); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_kzohkoefhxbiugempgls_ind_4').style.opacity = 1; document.getElementById('_fs_kzohkoefhxbiugempgls_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_kzohkoefhxbiugempgls_ind_4').style.opacity = 0; document.getElementById('_fs_kzohkoefhxbiugempgls_ind_4').style.opacity = 0;\"\n",
|
|
" >minute </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.088</div\n",
|
|
" ><div id='_tp_kzohkoefhxbiugempgls_ind_5'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03830461477520309); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_kzohkoefhxbiugempgls_ind_5').style.opacity = 1; document.getElementById('_fs_kzohkoefhxbiugempgls_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_kzohkoefhxbiugempgls_ind_5').style.opacity = 0; document.getElementById('_fs_kzohkoefhxbiugempgls_ind_5').style.opacity = 0;\"\n",
|
|
" >to </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.126</div\n",
|
|
" ><div id='_tp_kzohkoefhxbiugempgls_ind_6'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.06195286195286191); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_kzohkoefhxbiugempgls_ind_6').style.opacity = 1; document.getElementById('_fs_kzohkoefhxbiugempgls_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_kzohkoefhxbiugempgls_ind_6').style.opacity = 0; document.getElementById('_fs_kzohkoefhxbiugempgls_ind_6').style.opacity = 0;\"\n",
|
|
" >post </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.037</div\n",
|
|
" ><div id='_tp_kzohkoefhxbiugempgls_ind_7'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.014656367597544035); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_kzohkoefhxbiugempgls_ind_7').style.opacity = 1; document.getElementById('_fs_kzohkoefhxbiugempgls_ind_7').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_kzohkoefhxbiugempgls_ind_7').style.opacity = 0; document.getElementById('_fs_kzohkoefhxbiugempgls_ind_7').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.019</div\n",
|
|
" ><div id='_tp_kzohkoefhxbiugempgls_ind_8'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.5349178055060406); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_kzohkoefhxbiugempgls_ind_8').style.opacity = 1; document.getElementById('_fs_kzohkoefhxbiugempgls_ind_8').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_kzohkoefhxbiugempgls_ind_8').style.opacity = 0; document.getElementById('_fs_kzohkoefhxbiugempgls_ind_8').style.opacity = 0;\"\n",
|
|
" >feel </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.912</div\n",
|
|
" ><div id='_tp_kzohkoefhxbiugempgls_ind_9'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 1.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_kzohkoefhxbiugempgls_ind_9').style.opacity = 1; document.getElementById('_fs_kzohkoefhxbiugempgls_ind_9').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_kzohkoefhxbiugempgls_ind_9').style.opacity = 0; document.getElementById('_fs_kzohkoefhxbiugempgls_ind_9').style.opacity = 0;\"\n",
|
|
" >greedy </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.351</div\n",
|
|
" ><div id='_tp_kzohkoefhxbiugempgls_ind_10'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.18019409784115656); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_kzohkoefhxbiugempgls_ind_10').style.opacity = 1; document.getElementById('_fs_kzohkoefhxbiugempgls_ind_10').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_kzohkoefhxbiugempgls_ind_10').style.opacity = 0; document.getElementById('_fs_kzohkoefhxbiugempgls_ind_10').style.opacity = 0;\"\n",
|
|
" >wrong</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_kzohkoefhxbiugempgls_ind_11'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_kzohkoefhxbiugempgls_ind_11').style.opacity = 1; document.getElementById('_fs_kzohkoefhxbiugempgls_ind_11').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_kzohkoefhxbiugempgls_ind_11').style.opacity = 0; document.getElementById('_fs_kzohkoefhxbiugempgls_ind_11').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_apuwqawtzdakfvbqpgxu_output_3' style='display: none';><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"49.99634084343776%\" y1=\"33\" x2=\"49.99634084343776%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"49.99634084343776%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1</text><line x1=\"34.135128947971666%\" y1=\"33\" x2=\"34.135128947971666%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"34.135128947971666%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"18.273917052505578%\" y1=\"33\" x2=\"18.273917052505578%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"18.273917052505578%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7</text><line x1=\"65.85755273890385%\" y1=\"33\" x2=\"65.85755273890385%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"65.85755273890385%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">2</text><line x1=\"81.71876463436993%\" y1=\"33\" x2=\"81.71876463436993%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"81.71876463436993%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">5</text><line x1=\"48.90612392351526%\" y1=\"33\" x2=\"48.90612392351526%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"48.90612392351526%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1.2062</text><text x=\"48.90612392351526%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1.2062</text><text x=\"48.90612392351526%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"80.42185788706256%\" y1=\"33\" x2=\"80.42185788706256%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"80.42185788706256%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">4.7547</text><text x=\"80.42185788706256%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">4.7547</text><text x=\"80.42185788706256%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">anger</tspan>(inputs)</text><rect x=\"47.79049523563229%\" width=\"32.631362651430265%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"54.95841379158341%\" x2=\"80.42185788706256%\" y1=\"60\" y2=\"60\" id=\"_fb_umclyjrrojhkeqpdqhzf_ind_9\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"67.69013583932298%\" y=\"71\" font-size=\"12px\" id=\"_fs_umclyjrrojhkeqpdqhzf_ind_9\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">4.816</text><svg x=\"54.95841379158341%\" y=\"40\" height=\"20\" width=\"25.463444095479147%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">greedy</text> </svg></svg><line x1=\"51.90058758833451%\" x2=\"54.95841379158341%\" y1=\"60\" y2=\"60\" id=\"_fb_umclyjrrojhkeqpdqhzf_ind_2\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"53.42950068995896%\" y=\"71\" font-size=\"12px\" id=\"_fs_umclyjrrojhkeqpdqhzf_ind_2\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.578</text><svg x=\"51.90058758833451%\" y=\"40\" height=\"20\" width=\"3.0578262032489008%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">grabbing</text> </svg></svg><line x1=\"49.74580597970163%\" x2=\"51.90058758833451%\" y1=\"60\" y2=\"60\" id=\"_fb_umclyjrrojhkeqpdqhzf_ind_10\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"50.823196784018066%\" y=\"71\" font-size=\"12px\" id=\"_fs_umclyjrrojhkeqpdqhzf_ind_10\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.408</text><svg x=\"49.74580597970163%\" y=\"40\" height=\"20\" width=\"2.154781608632881%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">wrong</text> </svg></svg><line x1=\"48.795341740981556%\" x2=\"49.74580597970163%\" y1=\"60\" y2=\"60\" id=\"_fb_umclyjrrojhkeqpdqhzf_ind_1\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"49.27057386034159%\" y=\"71\" font-size=\"12px\" id=\"_fs_umclyjrrojhkeqpdqhzf_ind_1\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.18</text><svg x=\"48.795341740981556%\" y=\"40\" height=\"20\" width=\"0.9504642387200732%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">im</text> </svg></svg><line x1=\"48.34450677644826%\" x2=\"48.795341740981556%\" y1=\"60\" y2=\"60\" id=\"_fb_umclyjrrojhkeqpdqhzf_ind_6\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"48.569924258714906%\" y=\"71\" font-size=\"12px\" id=\"_fs_umclyjrrojhkeqpdqhzf_ind_6\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.085</text><svg x=\"48.34450677644826%\" y=\"40\" height=\"20\" width=\"0.45083496453329275%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">post</text> </svg></svg><line x1=\"47.92376160994304%\" x2=\"48.34450677644826%\" y1=\"60\" y2=\"60\" id=\"_fb_umclyjrrojhkeqpdqhzf_ind_3\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"48.13413419319565%\" y=\"71\" font-size=\"12px\" id=\"_fs_umclyjrrojhkeqpdqhzf_ind_3\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.08</text><svg x=\"47.92376160994304%\" y=\"40\" height=\"20\" width=\"0.4207451665052204%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">a</text> </svg></svg><line x1=\"47.79049590215375%\" x2=\"47.92376160994304%\" y1=\"60\" y2=\"60\" id=\"_fb_umclyjrrojhkeqpdqhzf_ind_4\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"47.8571287560484%\" y=\"71\" font-size=\"12px\" id=\"_fs_umclyjrrojhkeqpdqhzf_ind_4\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.025</text><svg x=\"47.79049590215375%\" y=\"40\" height=\"20\" width=\"0.1332657077892918%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">minute</text> </svg></svg><line x1=\"47.79049523563229%\" x2=\"47.79049590215375%\" y1=\"60\" y2=\"60\" id=\"_fb_umclyjrrojhkeqpdqhzf_ind_11\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"47.79049556889302%\" y=\"71\" font-size=\"12px\" id=\"_fs_umclyjrrojhkeqpdqhzf_ind_11\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"47.79049523563229%\" y=\"40\" height=\"20\" width=\"6.665214584700152e-07%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"54.95841379158341%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"54.95841379158341%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"54.95841379158341%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"54.95841379158341%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"54.95841379158341%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"54.95841379158341%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"54.95841379158341%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"54.95841379158341%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"51.90058758833451%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"51.90058758833451%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"51.90058758833451%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"51.90058758833451%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"51.90058758833451%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"51.90058758833451%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"51.90058758833451%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"51.90058758833451%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"49.74580597970163%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"49.74580597970163%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"49.74580597970163%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"49.74580597970163%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"49.74580597970163%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"49.74580597970163%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"49.74580597970163%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"49.74580597970163%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"48.795341740981556%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"48.795341740981556%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"48.795341740981556%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"48.795341740981556%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"48.795341740981556%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"48.795341740981556%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"48.795341740981556%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"48.795341740981556%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"48.34450677644826%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"48.34450677644826%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"48.34450677644826%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"48.34450677644826%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"48.34450677644826%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"48.34450677644826%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"48.34450677644826%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"48.34450677644826%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"47.92376160994304%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"47.92376160994304%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"47.92376160994304%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"47.92376160994304%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"47.92376160994304%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"47.92376160994304%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"47.92376160994304%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"47.92376160994304%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"47.79049590215375%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"47.79049590215375%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"47.79049590215375%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"47.79049590215375%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"47.79049590215375%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"47.79049590215375%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"47.79049590215375%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"47.79049590215375%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"80.42185788706256%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"47.79049523563229%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"80.42185788706256%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"54.95841379158341%\" y=\"40\" height=\"20\" width=\"25.463444095479147%\" onmouseover=\"document.getElementById('_tp_umclyjrrojhkeqpdqhzf_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_umclyjrrojhkeqpdqhzf_ind_9').style.opacity = 1;document.getElementById('_fb_umclyjrrojhkeqpdqhzf_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_umclyjrrojhkeqpdqhzf_ind_9').style.textDecoration = 'none';document.getElementById('_fs_umclyjrrojhkeqpdqhzf_ind_9').style.opacity = 0;document.getElementById('_fb_umclyjrrojhkeqpdqhzf_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"54.95841379158341%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"51.90058758833451%\" y=\"40\" height=\"20\" width=\"3.0578262032489008%\" onmouseover=\"document.getElementById('_tp_umclyjrrojhkeqpdqhzf_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_umclyjrrojhkeqpdqhzf_ind_2').style.opacity = 1;document.getElementById('_fb_umclyjrrojhkeqpdqhzf_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_umclyjrrojhkeqpdqhzf_ind_2').style.textDecoration = 'none';document.getElementById('_fs_umclyjrrojhkeqpdqhzf_ind_2').style.opacity = 0;document.getElementById('_fb_umclyjrrojhkeqpdqhzf_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"51.90058758833451%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"49.74580597970163%\" y=\"40\" height=\"20\" width=\"2.154781608632881%\" onmouseover=\"document.getElementById('_tp_umclyjrrojhkeqpdqhzf_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_umclyjrrojhkeqpdqhzf_ind_10').style.opacity = 1;document.getElementById('_fb_umclyjrrojhkeqpdqhzf_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_umclyjrrojhkeqpdqhzf_ind_10').style.textDecoration = 'none';document.getElementById('_fs_umclyjrrojhkeqpdqhzf_ind_10').style.opacity = 0;document.getElementById('_fb_umclyjrrojhkeqpdqhzf_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"49.74580597970163%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"48.795341740981556%\" y=\"40\" height=\"20\" width=\"0.9504642387200732%\" onmouseover=\"document.getElementById('_tp_umclyjrrojhkeqpdqhzf_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_umclyjrrojhkeqpdqhzf_ind_1').style.opacity = 1;document.getElementById('_fb_umclyjrrojhkeqpdqhzf_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_umclyjrrojhkeqpdqhzf_ind_1').style.textDecoration = 'none';document.getElementById('_fs_umclyjrrojhkeqpdqhzf_ind_1').style.opacity = 0;document.getElementById('_fb_umclyjrrojhkeqpdqhzf_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"48.795341740981556%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"48.34450677644826%\" y=\"40\" height=\"20\" width=\"0.45083496453329275%\" onmouseover=\"document.getElementById('_tp_umclyjrrojhkeqpdqhzf_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_umclyjrrojhkeqpdqhzf_ind_6').style.opacity = 1;document.getElementById('_fb_umclyjrrojhkeqpdqhzf_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_umclyjrrojhkeqpdqhzf_ind_6').style.textDecoration = 'none';document.getElementById('_fs_umclyjrrojhkeqpdqhzf_ind_6').style.opacity = 0;document.getElementById('_fb_umclyjrrojhkeqpdqhzf_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"48.34450677644826%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"47.92376160994304%\" y=\"40\" height=\"20\" width=\"0.4207451665052204%\" onmouseover=\"document.getElementById('_tp_umclyjrrojhkeqpdqhzf_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_umclyjrrojhkeqpdqhzf_ind_3').style.opacity = 1;document.getElementById('_fb_umclyjrrojhkeqpdqhzf_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_umclyjrrojhkeqpdqhzf_ind_3').style.textDecoration = 'none';document.getElementById('_fs_umclyjrrojhkeqpdqhzf_ind_3').style.opacity = 0;document.getElementById('_fb_umclyjrrojhkeqpdqhzf_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"47.92376160994304%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"47.79049590215375%\" y=\"40\" height=\"20\" width=\"0.1332657077892918%\" onmouseover=\"document.getElementById('_tp_umclyjrrojhkeqpdqhzf_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_umclyjrrojhkeqpdqhzf_ind_4').style.opacity = 1;document.getElementById('_fb_umclyjrrojhkeqpdqhzf_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_umclyjrrojhkeqpdqhzf_ind_4').style.textDecoration = 'none';document.getElementById('_fs_umclyjrrojhkeqpdqhzf_ind_4').style.opacity = 0;document.getElementById('_fb_umclyjrrojhkeqpdqhzf_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"47.79049523563229%\" y=\"40\" height=\"20\" width=\"6.665214584700152e-07%\" onmouseover=\"document.getElementById('_tp_umclyjrrojhkeqpdqhzf_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_umclyjrrojhkeqpdqhzf_ind_11').style.opacity = 1;document.getElementById('_fb_umclyjrrojhkeqpdqhzf_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_umclyjrrojhkeqpdqhzf_ind_11').style.textDecoration = 'none';document.getElementById('_fs_umclyjrrojhkeqpdqhzf_ind_11').style.opacity = 0;document.getElementById('_fb_umclyjrrojhkeqpdqhzf_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"80.42185788706256%\" width=\"1.1156286878829753%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"80.42185788706256%\" x2=\"81.13906831270296%\" y1=\"60\" y2=\"60\" id=\"_fb_umclyjrrojhkeqpdqhzf_ind_8\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"80.78046309988275%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_umclyjrrojhkeqpdqhzf_ind_8\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.136</text><svg x=\"80.42185788706256%\" y=\"40\" height=\"20\" width=\"0.7172104256404026%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"81.13906831270296%\" x2=\"81.41358863260957%\" y1=\"60\" y2=\"60\" id=\"_fb_umclyjrrojhkeqpdqhzf_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"81.27632847265627%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_umclyjrrojhkeqpdqhzf_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.052</text><svg x=\"81.13906831270296%\" y=\"40\" height=\"20\" width=\"0.27452031990661396%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><line x1=\"81.41358863260957%\" x2=\"81.53748629769372%\" y1=\"60\" y2=\"60\" id=\"_fb_umclyjrrojhkeqpdqhzf_ind_7\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"81.47553746515165%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_umclyjrrojhkeqpdqhzf_ind_7\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.023</text><svg x=\"81.41358863260957%\" y=\"40\" height=\"20\" width=\"0.12389766508414368%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"81.53748629769372%\" x2=\"81.53748657494553%\" y1=\"60\" y2=\"60\" id=\"_fb_umclyjrrojhkeqpdqhzf_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"81.53748643631963%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_umclyjrrojhkeqpdqhzf_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"81.53748629769372%\" y=\"40\" height=\"20\" width=\"2.772518143956404e-07%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"81.13906831270296%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"81.13906831270296%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"81.13906831270296%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"81.13906831270296%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"81.13906831270296%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"81.13906831270296%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"81.13906831270296%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"81.13906831270296%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"81.41358863260957%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"81.41358863260957%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"81.41358863260957%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"81.41358863260957%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"81.41358863260957%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"81.41358863260957%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"81.41358863260957%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"81.41358863260957%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"81.53748629769372%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"81.53748629769372%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"81.53748629769372%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"81.53748629769372%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"81.53748629769372%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"81.53748629769372%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"81.53748629769372%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"81.53748629769372%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"80.42185788706256%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"81.53748657494553%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"81.13906831270296%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"80.42185788706256%\" y=\"40\" height=\"20\" width=\"0.7172104256404026%\" onmouseover=\"document.getElementById('_tp_umclyjrrojhkeqpdqhzf_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_umclyjrrojhkeqpdqhzf_ind_8').style.opacity = 1;document.getElementById('_fb_umclyjrrojhkeqpdqhzf_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_umclyjrrojhkeqpdqhzf_ind_8').style.textDecoration = 'none';document.getElementById('_fs_umclyjrrojhkeqpdqhzf_ind_8').style.opacity = 0;document.getElementById('_fb_umclyjrrojhkeqpdqhzf_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"81.41358863260957%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"81.13906831270296%\" y=\"40\" height=\"20\" width=\"0.27452031990661396%\" onmouseover=\"document.getElementById('_tp_umclyjrrojhkeqpdqhzf_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_umclyjrrojhkeqpdqhzf_ind_5').style.opacity = 1;document.getElementById('_fb_umclyjrrojhkeqpdqhzf_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_umclyjrrojhkeqpdqhzf_ind_5').style.textDecoration = 'none';document.getElementById('_fs_umclyjrrojhkeqpdqhzf_ind_5').style.opacity = 0;document.getElementById('_fb_umclyjrrojhkeqpdqhzf_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"81.53748629769372%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"81.41358863260957%\" y=\"40\" height=\"20\" width=\"0.12389766508414368%\" onmouseover=\"document.getElementById('_tp_umclyjrrojhkeqpdqhzf_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_umclyjrrojhkeqpdqhzf_ind_7').style.opacity = 1;document.getElementById('_fb_umclyjrrojhkeqpdqhzf_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_umclyjrrojhkeqpdqhzf_ind_7').style.textDecoration = 'none';document.getElementById('_fs_umclyjrrojhkeqpdqhzf_ind_7').style.opacity = 0;document.getElementById('_fb_umclyjrrojhkeqpdqhzf_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"81.53748629769372%\" y=\"40\" height=\"20\" width=\"2.772518143956404e-07%\" onmouseover=\"document.getElementById('_tp_umclyjrrojhkeqpdqhzf_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_umclyjrrojhkeqpdqhzf_ind_0').style.opacity = 1;document.getElementById('_fb_umclyjrrojhkeqpdqhzf_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_umclyjrrojhkeqpdqhzf_ind_0').style.textDecoration = 'none';document.getElementById('_fs_umclyjrrojhkeqpdqhzf_ind_0').style.opacity = 0;document.getElementById('_fb_umclyjrrojhkeqpdqhzf_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_umclyjrrojhkeqpdqhzf_ind_0'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_umclyjrrojhkeqpdqhzf_ind_0').style.opacity = 1; document.getElementById('_fs_umclyjrrojhkeqpdqhzf_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_umclyjrrojhkeqpdqhzf_ind_0').style.opacity = 0; document.getElementById('_fs_umclyjrrojhkeqpdqhzf_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.18</div\n",
|
|
" ><div id='_tp_umclyjrrojhkeqpdqhzf_ind_1'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.02253911665676371); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_umclyjrrojhkeqpdqhzf_ind_1').style.opacity = 1; document.getElementById('_fs_umclyjrrojhkeqpdqhzf_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_umclyjrrojhkeqpdqhzf_ind_1').style.opacity = 0; document.getElementById('_fs_umclyjrrojhkeqpdqhzf_ind_1').style.opacity = 0;\"\n",
|
|
" >im </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.578</div\n",
|
|
" ><div id='_tp_umclyjrrojhkeqpdqhzf_ind_2'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.07771836007130124); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_umclyjrrojhkeqpdqhzf_ind_2').style.opacity = 1; document.getElementById('_fs_umclyjrrojhkeqpdqhzf_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_umclyjrrojhkeqpdqhzf_ind_2').style.opacity = 0; document.getElementById('_fs_umclyjrrojhkeqpdqhzf_ind_2').style.opacity = 0;\"\n",
|
|
" >grabbing </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.08</div\n",
|
|
" ><div id='_tp_umclyjrrojhkeqpdqhzf_ind_3'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_umclyjrrojhkeqpdqhzf_ind_3').style.opacity = 1; document.getElementById('_fs_umclyjrrojhkeqpdqhzf_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_umclyjrrojhkeqpdqhzf_ind_3').style.opacity = 0; document.getElementById('_fs_umclyjrrojhkeqpdqhzf_ind_3').style.opacity = 0;\"\n",
|
|
" >a </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.025</div\n",
|
|
" ><div id='_tp_umclyjrrojhkeqpdqhzf_ind_4'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_umclyjrrojhkeqpdqhzf_ind_4').style.opacity = 1; document.getElementById('_fs_umclyjrrojhkeqpdqhzf_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_umclyjrrojhkeqpdqhzf_ind_4').style.opacity = 0; document.getElementById('_fs_umclyjrrojhkeqpdqhzf_ind_4').style.opacity = 0;\"\n",
|
|
" >minute </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.052</div\n",
|
|
" ><div id='_tp_umclyjrrojhkeqpdqhzf_ind_5'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_umclyjrrojhkeqpdqhzf_ind_5').style.opacity = 1; document.getElementById('_fs_umclyjrrojhkeqpdqhzf_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_umclyjrrojhkeqpdqhzf_ind_5').style.opacity = 0; document.getElementById('_fs_umclyjrrojhkeqpdqhzf_ind_5').style.opacity = 0;\"\n",
|
|
" >to </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.085</div\n",
|
|
" ><div id='_tp_umclyjrrojhkeqpdqhzf_ind_6'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_umclyjrrojhkeqpdqhzf_ind_6').style.opacity = 1; document.getElementById('_fs_umclyjrrojhkeqpdqhzf_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_umclyjrrojhkeqpdqhzf_ind_6').style.opacity = 0; document.getElementById('_fs_umclyjrrojhkeqpdqhzf_ind_6').style.opacity = 0;\"\n",
|
|
" >post </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.023</div\n",
|
|
" ><div id='_tp_umclyjrrojhkeqpdqhzf_ind_7'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_umclyjrrojhkeqpdqhzf_ind_7').style.opacity = 1; document.getElementById('_fs_umclyjrrojhkeqpdqhzf_ind_7').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_umclyjrrojhkeqpdqhzf_ind_7').style.opacity = 0; document.getElementById('_fs_umclyjrrojhkeqpdqhzf_ind_7').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.136</div\n",
|
|
" ><div id='_tp_umclyjrrojhkeqpdqhzf_ind_8'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_umclyjrrojhkeqpdqhzf_ind_8').style.opacity = 1; document.getElementById('_fs_umclyjrrojhkeqpdqhzf_ind_8').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_umclyjrrojhkeqpdqhzf_ind_8').style.opacity = 0; document.getElementById('_fs_umclyjrrojhkeqpdqhzf_ind_8').style.opacity = 0;\"\n",
|
|
" >feel </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>4.816</div\n",
|
|
" ><div id='_tp_umclyjrrojhkeqpdqhzf_ind_9'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.7004555357496535); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_umclyjrrojhkeqpdqhzf_ind_9').style.opacity = 1; document.getElementById('_fs_umclyjrrojhkeqpdqhzf_ind_9').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_umclyjrrojhkeqpdqhzf_ind_9').style.opacity = 0; document.getElementById('_fs_umclyjrrojhkeqpdqhzf_ind_9').style.opacity = 0;\"\n",
|
|
" >greedy </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.408</div\n",
|
|
" ><div id='_tp_umclyjrrojhkeqpdqhzf_ind_10'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.05407011289364243); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_umclyjrrojhkeqpdqhzf_ind_10').style.opacity = 1; document.getElementById('_fs_umclyjrrojhkeqpdqhzf_ind_10').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_umclyjrrojhkeqpdqhzf_ind_10').style.opacity = 0; document.getElementById('_fs_umclyjrrojhkeqpdqhzf_ind_10').style.opacity = 0;\"\n",
|
|
" >wrong</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_umclyjrrojhkeqpdqhzf_ind_11'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_umclyjrrojhkeqpdqhzf_ind_11').style.opacity = 1; document.getElementById('_fs_umclyjrrojhkeqpdqhzf_ind_11').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_umclyjrrojhkeqpdqhzf_ind_11').style.opacity = 0; document.getElementById('_fs_umclyjrrojhkeqpdqhzf_ind_11').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_apuwqawtzdakfvbqpgxu_output_3_zoom' style='display: none;'><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"52.947328927835606%\" y1=\"33\" x2=\"52.947328927835606%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"52.947328927835606%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">2</text><line x1=\"39.891669704371026%\" y1=\"33\" x2=\"39.891669704371026%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"39.891669704371026%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">1</text><line x1=\"26.83601048090645%\" y1=\"33\" x2=\"26.83601048090645%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"26.83601048090645%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">0</text><line x1=\"13.780351257441868%\" y1=\"33\" x2=\"13.780351257441868%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"13.780351257441868%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1</text><line x1=\"66.00298815130019%\" y1=\"33\" x2=\"66.00298815130019%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"66.00298815130019%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">3</text><line x1=\"79.05864737476476%\" y1=\"33\" x2=\"79.05864737476476%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"79.05864737476476%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">4</text><line x1=\"92.11430659822935%\" y1=\"33\" x2=\"92.11430659822935%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"92.11430659822935%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">5</text><line x1=\"11.088217639915735%\" y1=\"33\" x2=\"11.088217639915735%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"11.088217639915735%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1.2062</text><text x=\"11.088217639915735%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1.2062</text><text x=\"11.088217639915735%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"88.91178222952767%\" y1=\"33\" x2=\"88.91178222952767%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"88.91178222952767%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">4.7547</text><text x=\"88.91178222952767%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">4.7547</text><text x=\"88.91178222952767%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">anger</tspan>(inputs)</text><rect x=\"8.333333322453619%\" width=\"80.57844890707406%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"26.03347552308769%\" x2=\"88.91178222952767%\" y1=\"60\" y2=\"60\" id=\"_fb_osrvzgvahehqssyvmuag_ind_9\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"57.47262887630768%\" y=\"71\" font-size=\"12px\" id=\"_fs_osrvzgvahehqssyvmuag_ind_9\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">4.816</text><svg x=\"26.03347552308769%\" y=\"40\" height=\"20\" width=\"62.878306706439986%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">greedy</text> </svg></svg><line x1=\"18.482614251457534%\" x2=\"26.03347552308769%\" y1=\"60\" y2=\"60\" id=\"_fb_osrvzgvahehqssyvmuag_ind_2\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"22.25804488727261%\" y=\"71\" font-size=\"12px\" id=\"_fs_osrvzgvahehqssyvmuag_ind_2\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.578</text><svg x=\"18.482614251457534%\" y=\"40\" height=\"20\" width=\"7.550861271630158%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">grabbing</text> </svg></svg><line x1=\"13.161691505697874%\" x2=\"18.482614251457534%\" y1=\"60\" y2=\"60\" id=\"_fb_osrvzgvahehqssyvmuag_ind_10\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"15.822152878577704%\" y=\"71\" font-size=\"12px\" id=\"_fs_osrvzgvahehqssyvmuag_ind_10\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.408</text><svg x=\"13.161691505697874%\" y=\"40\" height=\"20\" width=\"5.32092274575966%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">wrong</text> </svg></svg><line x1=\"10.814657000402693%\" x2=\"13.161691505697874%\" y1=\"60\" y2=\"60\" id=\"_fb_osrvzgvahehqssyvmuag_ind_1\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"11.988174253050284%\" y=\"71\" font-size=\"12px\" id=\"_fs_osrvzgvahehqssyvmuag_ind_1\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.18</text><svg x=\"10.814657000402693%\" y=\"40\" height=\"20\" width=\"2.3470345052951807%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">im</text> </svg></svg><line x1=\"9.701385006731426%\" x2=\"10.814657000402693%\" y1=\"60\" y2=\"60\" id=\"_fb_osrvzgvahehqssyvmuag_ind_6\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"10.258021003567059%\" y=\"71\" font-size=\"12px\" id=\"_fs_osrvzgvahehqssyvmuag_ind_6\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.085</text><svg x=\"9.701385006731426%\" y=\"40\" height=\"20\" width=\"1.1132719936712672%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">post</text> </svg></svg><line x1=\"8.66241543428995%\" x2=\"9.701385006731426%\" y1=\"60\" y2=\"60\" id=\"_fb_osrvzgvahehqssyvmuag_ind_3\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"9.181900220510688%\" y=\"71\" font-size=\"12px\" id=\"_fs_osrvzgvahehqssyvmuag_ind_3\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.08</text><svg x=\"8.66241543428995%\" y=\"40\" height=\"20\" width=\"1.0389695724414754%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">a</text> </svg></svg><line x1=\"8.333334968332327%\" x2=\"8.66241543428995%\" y1=\"60\" y2=\"60\" id=\"_fb_osrvzgvahehqssyvmuag_ind_4\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.497875201311139%\" y=\"71\" font-size=\"12px\" id=\"_fs_osrvzgvahehqssyvmuag_ind_4\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.025</text><svg x=\"8.333334968332327%\" y=\"40\" height=\"20\" width=\"0.32908046595762386%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">minute</text> </svg></svg><line x1=\"8.333333322453612%\" x2=\"8.333334968332327%\" y1=\"60\" y2=\"60\" id=\"_fb_osrvzgvahehqssyvmuag_ind_11\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.33333414539297%\" y=\"71\" font-size=\"12px\" id=\"_fs_osrvzgvahehqssyvmuag_ind_11\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"8.333333322453612%\" y=\"40\" height=\"20\" width=\"1.6458787150952503e-06%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"26.03347552308769%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"26.03347552308769%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"26.03347552308769%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"26.03347552308769%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"26.03347552308769%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"26.03347552308769%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"26.03347552308769%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"26.03347552308769%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"18.482614251457534%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"18.482614251457534%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"18.482614251457534%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"18.482614251457534%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"18.482614251457534%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"18.482614251457534%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"18.482614251457534%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"18.482614251457534%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"13.161691505697874%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"13.161691505697874%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"13.161691505697874%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"13.161691505697874%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"13.161691505697874%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"13.161691505697874%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"13.161691505697874%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"13.161691505697874%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"10.814657000402693%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"10.814657000402693%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"10.814657000402693%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"10.814657000402693%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"10.814657000402693%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"10.814657000402693%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"10.814657000402693%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"10.814657000402693%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"9.701385006731426%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"9.701385006731426%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"9.701385006731426%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"9.701385006731426%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"9.701385006731426%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"9.701385006731426%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"9.701385006731426%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"9.701385006731426%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.66241543428995%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.66241543428995%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.66241543428995%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.66241543428995%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.66241543428995%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.66241543428995%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.66241543428995%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.66241543428995%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.333334968332327%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.333334968332327%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.333334968332327%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.333334968332327%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.333334968332327%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.333334968332327%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.333334968332327%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.333334968332327%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"88.91178222952767%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.333333322453619%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"88.91178222952767%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"26.03347552308769%\" y=\"40\" height=\"20\" width=\"62.878306706439986%\" onmouseover=\"document.getElementById('_tp_osrvzgvahehqssyvmuag_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_osrvzgvahehqssyvmuag_ind_9').style.opacity = 1;document.getElementById('_fb_osrvzgvahehqssyvmuag_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_osrvzgvahehqssyvmuag_ind_9').style.textDecoration = 'none';document.getElementById('_fs_osrvzgvahehqssyvmuag_ind_9').style.opacity = 0;document.getElementById('_fb_osrvzgvahehqssyvmuag_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"26.03347552308769%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"18.482614251457534%\" y=\"40\" height=\"20\" width=\"7.550861271630158%\" onmouseover=\"document.getElementById('_tp_osrvzgvahehqssyvmuag_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_osrvzgvahehqssyvmuag_ind_2').style.opacity = 1;document.getElementById('_fb_osrvzgvahehqssyvmuag_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_osrvzgvahehqssyvmuag_ind_2').style.textDecoration = 'none';document.getElementById('_fs_osrvzgvahehqssyvmuag_ind_2').style.opacity = 0;document.getElementById('_fb_osrvzgvahehqssyvmuag_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"18.482614251457534%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"13.161691505697874%\" y=\"40\" height=\"20\" width=\"5.32092274575966%\" onmouseover=\"document.getElementById('_tp_osrvzgvahehqssyvmuag_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_osrvzgvahehqssyvmuag_ind_10').style.opacity = 1;document.getElementById('_fb_osrvzgvahehqssyvmuag_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_osrvzgvahehqssyvmuag_ind_10').style.textDecoration = 'none';document.getElementById('_fs_osrvzgvahehqssyvmuag_ind_10').style.opacity = 0;document.getElementById('_fb_osrvzgvahehqssyvmuag_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"13.161691505697874%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"10.814657000402693%\" y=\"40\" height=\"20\" width=\"2.3470345052951807%\" onmouseover=\"document.getElementById('_tp_osrvzgvahehqssyvmuag_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_osrvzgvahehqssyvmuag_ind_1').style.opacity = 1;document.getElementById('_fb_osrvzgvahehqssyvmuag_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_osrvzgvahehqssyvmuag_ind_1').style.textDecoration = 'none';document.getElementById('_fs_osrvzgvahehqssyvmuag_ind_1').style.opacity = 0;document.getElementById('_fb_osrvzgvahehqssyvmuag_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"10.814657000402693%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"9.701385006731426%\" y=\"40\" height=\"20\" width=\"1.1132719936712672%\" onmouseover=\"document.getElementById('_tp_osrvzgvahehqssyvmuag_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_osrvzgvahehqssyvmuag_ind_6').style.opacity = 1;document.getElementById('_fb_osrvzgvahehqssyvmuag_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_osrvzgvahehqssyvmuag_ind_6').style.textDecoration = 'none';document.getElementById('_fs_osrvzgvahehqssyvmuag_ind_6').style.opacity = 0;document.getElementById('_fb_osrvzgvahehqssyvmuag_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"9.701385006731426%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.66241543428995%\" y=\"40\" height=\"20\" width=\"1.0389695724414754%\" onmouseover=\"document.getElementById('_tp_osrvzgvahehqssyvmuag_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_osrvzgvahehqssyvmuag_ind_3').style.opacity = 1;document.getElementById('_fb_osrvzgvahehqssyvmuag_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_osrvzgvahehqssyvmuag_ind_3').style.textDecoration = 'none';document.getElementById('_fs_osrvzgvahehqssyvmuag_ind_3').style.opacity = 0;document.getElementById('_fb_osrvzgvahehqssyvmuag_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"8.66241543428995%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.333334968332327%\" y=\"40\" height=\"20\" width=\"0.32908046595762386%\" onmouseover=\"document.getElementById('_tp_osrvzgvahehqssyvmuag_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_osrvzgvahehqssyvmuag_ind_4').style.opacity = 1;document.getElementById('_fb_osrvzgvahehqssyvmuag_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_osrvzgvahehqssyvmuag_ind_4').style.textDecoration = 'none';document.getElementById('_fs_osrvzgvahehqssyvmuag_ind_4').style.opacity = 0;document.getElementById('_fb_osrvzgvahehqssyvmuag_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"8.333333322453612%\" y=\"40\" height=\"20\" width=\"1.6458787150952503e-06%\" onmouseover=\"document.getElementById('_tp_osrvzgvahehqssyvmuag_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_osrvzgvahehqssyvmuag_ind_11').style.opacity = 1;document.getElementById('_fb_osrvzgvahehqssyvmuag_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_osrvzgvahehqssyvmuag_ind_11').style.textDecoration = 'none';document.getElementById('_fs_osrvzgvahehqssyvmuag_ind_11').style.opacity = 0;document.getElementById('_fb_osrvzgvahehqssyvmuag_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"88.91178222952767%\" width=\"2.7548843174621203%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"88.91178222952767%\" x2=\"90.68283004801503%\" y1=\"60\" y2=\"60\" id=\"_fb_osrvzgvahehqssyvmuag_ind_8\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"89.79730613877135%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_osrvzgvahehqssyvmuag_ind_8\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.136</text><svg x=\"88.91178222952767%\" y=\"40\" height=\"20\" width=\"1.7710478184873608%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"90.68283004801503%\" x2=\"91.36071842821663%\" y1=\"60\" y2=\"60\" id=\"_fb_osrvzgvahehqssyvmuag_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.02177423811582%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_osrvzgvahehqssyvmuag_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.052</text><svg x=\"90.68283004801503%\" y=\"40\" height=\"20\" width=\"0.677888380201594%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><line x1=\"91.36071842821663%\" x2=\"91.66666586235637%\" y1=\"60\" y2=\"60\" id=\"_fb_osrvzgvahehqssyvmuag_ind_7\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.5136921452865%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_osrvzgvahehqssyvmuag_ind_7\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.023</text><svg x=\"91.36071842821663%\" y=\"40\" height=\"20\" width=\"0.305947434139739%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"91.66666586235637%\" x2=\"91.6666665469898%\" y1=\"60\" y2=\"60\" id=\"_fb_osrvzgvahehqssyvmuag_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.66666620467308%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_osrvzgvahehqssyvmuag_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"91.66666586235637%\" y=\"40\" height=\"20\" width=\"6.846334343890703e-07%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"90.68283004801503%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.68283004801503%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.68283004801503%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.68283004801503%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.68283004801503%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.68283004801503%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.68283004801503%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.68283004801503%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.36071842821663%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.36071842821663%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.36071842821663%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.36071842821663%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.36071842821663%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.36071842821663%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.36071842821663%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.36071842821663%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.66666586235637%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.66666586235637%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.66666586235637%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.66666586235637%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.66666586235637%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.66666586235637%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.66666586235637%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.66666586235637%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"88.91178222952767%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.6666665469898%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"90.68283004801503%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"88.91178222952767%\" y=\"40\" height=\"20\" width=\"1.7710478184873608%\" onmouseover=\"document.getElementById('_tp_osrvzgvahehqssyvmuag_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_osrvzgvahehqssyvmuag_ind_8').style.opacity = 1;document.getElementById('_fb_osrvzgvahehqssyvmuag_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_osrvzgvahehqssyvmuag_ind_8').style.textDecoration = 'none';document.getElementById('_fs_osrvzgvahehqssyvmuag_ind_8').style.opacity = 0;document.getElementById('_fb_osrvzgvahehqssyvmuag_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.36071842821663%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"90.68283004801503%\" y=\"40\" height=\"20\" width=\"0.677888380201594%\" onmouseover=\"document.getElementById('_tp_osrvzgvahehqssyvmuag_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_osrvzgvahehqssyvmuag_ind_5').style.opacity = 1;document.getElementById('_fb_osrvzgvahehqssyvmuag_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_osrvzgvahehqssyvmuag_ind_5').style.textDecoration = 'none';document.getElementById('_fs_osrvzgvahehqssyvmuag_ind_5').style.opacity = 0;document.getElementById('_fb_osrvzgvahehqssyvmuag_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66666586235637%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.36071842821663%\" y=\"40\" height=\"20\" width=\"0.305947434139739%\" onmouseover=\"document.getElementById('_tp_osrvzgvahehqssyvmuag_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_osrvzgvahehqssyvmuag_ind_7').style.opacity = 1;document.getElementById('_fb_osrvzgvahehqssyvmuag_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_osrvzgvahehqssyvmuag_ind_7').style.textDecoration = 'none';document.getElementById('_fs_osrvzgvahehqssyvmuag_ind_7').style.opacity = 0;document.getElementById('_fb_osrvzgvahehqssyvmuag_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"91.66666586235637%\" y=\"40\" height=\"20\" width=\"6.846334343890703e-07%\" onmouseover=\"document.getElementById('_tp_osrvzgvahehqssyvmuag_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_osrvzgvahehqssyvmuag_ind_0').style.opacity = 1;document.getElementById('_fb_osrvzgvahehqssyvmuag_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_osrvzgvahehqssyvmuag_ind_0').style.textDecoration = 'none';document.getElementById('_fs_osrvzgvahehqssyvmuag_ind_0').style.opacity = 0;document.getElementById('_fb_osrvzgvahehqssyvmuag_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_osrvzgvahehqssyvmuag_ind_0'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_osrvzgvahehqssyvmuag_ind_0').style.opacity = 1; document.getElementById('_fs_osrvzgvahehqssyvmuag_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_osrvzgvahehqssyvmuag_ind_0').style.opacity = 0; document.getElementById('_fs_osrvzgvahehqssyvmuag_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.18</div\n",
|
|
" ><div id='_tp_osrvzgvahehqssyvmuag_ind_1'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.030421865715983164); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_osrvzgvahehqssyvmuag_ind_1').style.opacity = 1; document.getElementById('_fs_osrvzgvahehqssyvmuag_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_osrvzgvahehqssyvmuag_ind_1').style.opacity = 0; document.getElementById('_fs_osrvzgvahehqssyvmuag_ind_1').style.opacity = 0;\"\n",
|
|
" >im </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.578</div\n",
|
|
" ><div id='_tp_osrvzgvahehqssyvmuag_ind_2'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.1171321053673995); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_osrvzgvahehqssyvmuag_ind_2').style.opacity = 1; document.getElementById('_fs_osrvzgvahehqssyvmuag_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_osrvzgvahehqssyvmuag_ind_2').style.opacity = 0; document.getElementById('_fs_osrvzgvahehqssyvmuag_ind_2').style.opacity = 0;\"\n",
|
|
" >grabbing </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.08</div\n",
|
|
" ><div id='_tp_osrvzgvahehqssyvmuag_ind_3'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.014656367597544035); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_osrvzgvahehqssyvmuag_ind_3').style.opacity = 1; document.getElementById('_fs_osrvzgvahehqssyvmuag_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_osrvzgvahehqssyvmuag_ind_3').style.opacity = 0; document.getElementById('_fs_osrvzgvahehqssyvmuag_ind_3').style.opacity = 0;\"\n",
|
|
" >a </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.025</div\n",
|
|
" ><div id='_tp_osrvzgvahehqssyvmuag_ind_4'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_osrvzgvahehqssyvmuag_ind_4').style.opacity = 1; document.getElementById('_fs_osrvzgvahehqssyvmuag_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_osrvzgvahehqssyvmuag_ind_4').style.opacity = 0; document.getElementById('_fs_osrvzgvahehqssyvmuag_ind_4').style.opacity = 0;\"\n",
|
|
" >minute </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.052</div\n",
|
|
" ><div id='_tp_osrvzgvahehqssyvmuag_ind_5'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_osrvzgvahehqssyvmuag_ind_5').style.opacity = 1; document.getElementById('_fs_osrvzgvahehqssyvmuag_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_osrvzgvahehqssyvmuag_ind_5').style.opacity = 0; document.getElementById('_fs_osrvzgvahehqssyvmuag_ind_5').style.opacity = 0;\"\n",
|
|
" >to </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.085</div\n",
|
|
" ><div id='_tp_osrvzgvahehqssyvmuag_ind_6'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.014656367597544035); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_osrvzgvahehqssyvmuag_ind_6').style.opacity = 1; document.getElementById('_fs_osrvzgvahehqssyvmuag_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_osrvzgvahehqssyvmuag_ind_6').style.opacity = 0; document.getElementById('_fs_osrvzgvahehqssyvmuag_ind_6').style.opacity = 0;\"\n",
|
|
" >post </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.023</div\n",
|
|
" ><div id='_tp_osrvzgvahehqssyvmuag_ind_7'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_osrvzgvahehqssyvmuag_ind_7').style.opacity = 1; document.getElementById('_fs_osrvzgvahehqssyvmuag_ind_7').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_osrvzgvahehqssyvmuag_ind_7').style.opacity = 0; document.getElementById('_fs_osrvzgvahehqssyvmuag_ind_7').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.136</div\n",
|
|
" ><div id='_tp_osrvzgvahehqssyvmuag_ind_8'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.022539116656763607); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_osrvzgvahehqssyvmuag_ind_8').style.opacity = 1; document.getElementById('_fs_osrvzgvahehqssyvmuag_ind_8').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_osrvzgvahehqssyvmuag_ind_8').style.opacity = 0; document.getElementById('_fs_osrvzgvahehqssyvmuag_ind_8').style.opacity = 0;\"\n",
|
|
" >feel </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>4.816</div\n",
|
|
" ><div id='_tp_osrvzgvahehqssyvmuag_ind_9'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 1.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_osrvzgvahehqssyvmuag_ind_9').style.opacity = 1; document.getElementById('_fs_osrvzgvahehqssyvmuag_ind_9').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_osrvzgvahehqssyvmuag_ind_9').style.opacity = 0; document.getElementById('_fs_osrvzgvahehqssyvmuag_ind_9').style.opacity = 0;\"\n",
|
|
" >greedy </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.408</div\n",
|
|
" ><div id='_tp_osrvzgvahehqssyvmuag_ind_10'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.07771836007130124); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_osrvzgvahehqssyvmuag_ind_10').style.opacity = 1; document.getElementById('_fs_osrvzgvahehqssyvmuag_ind_10').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_osrvzgvahehqssyvmuag_ind_10').style.opacity = 0; document.getElementById('_fs_osrvzgvahehqssyvmuag_ind_10').style.opacity = 0;\"\n",
|
|
" >wrong</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_osrvzgvahehqssyvmuag_ind_11'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_osrvzgvahehqssyvmuag_ind_11').style.opacity = 1; document.getElementById('_fs_osrvzgvahehqssyvmuag_ind_11').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_osrvzgvahehqssyvmuag_ind_11').style.opacity = 0; document.getElementById('_fs_osrvzgvahehqssyvmuag_ind_11').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_apuwqawtzdakfvbqpgxu_output_4' style='display: none';><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"49.99634084343776%\" y1=\"33\" x2=\"49.99634084343776%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"49.99634084343776%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1</text><line x1=\"34.135128947971666%\" y1=\"33\" x2=\"34.135128947971666%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"34.135128947971666%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"18.273917052505578%\" y1=\"33\" x2=\"18.273917052505578%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"18.273917052505578%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7</text><line x1=\"65.85755273890385%\" y1=\"33\" x2=\"65.85755273890385%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"65.85755273890385%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">2</text><line x1=\"81.71876463436993%\" y1=\"33\" x2=\"81.71876463436993%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"81.71876463436993%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">5</text><line x1=\"42.78588675797814%\" y1=\"33\" x2=\"42.78588675797814%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"42.78588675797814%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2.36379</text><text x=\"42.78588675797814%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2.36379</text><text x=\"42.78588675797814%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"22.265251553606994%\" y1=\"33\" x2=\"22.265251553606994%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"22.265251553606994%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.24508</text><text x=\"22.265251553606994%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.24508</text><text x=\"22.265251553606994%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">fear</tspan>(inputs)</text><rect x=\"21.06373173303299%\" width=\"1.2015198205740072%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"21.650476523360464%\" x2=\"22.265251553606994%\" y1=\"60\" y2=\"60\" id=\"_fb_duhtbtfzhydulydifzcc_ind_6\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"21.957864038483727%\" y=\"71\" font-size=\"12px\" id=\"_fs_duhtbtfzhydulydifzcc_ind_6\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.116</text><svg x=\"21.650476523360464%\" y=\"40\" height=\"20\" width=\"0.6147750302465305%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">post</text> </svg></svg><line x1=\"21.108689291058703%\" x2=\"21.650476523360464%\" y1=\"60\" y2=\"60\" id=\"_fb_duhtbtfzhydulydifzcc_ind_2\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"21.37958290720958%\" y=\"71\" font-size=\"12px\" id=\"_fs_duhtbtfzhydulydifzcc_ind_2\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.102</text><svg x=\"21.108689291058703%\" y=\"40\" height=\"20\" width=\"0.5417872323017612%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">grabbing</text> </svg></svg><line x1=\"21.06373223430199%\" x2=\"21.108689291058703%\" y1=\"60\" y2=\"60\" id=\"_fb_duhtbtfzhydulydifzcc_ind_10\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"21.086210762680345%\" y=\"71\" font-size=\"12px\" id=\"_fs_duhtbtfzhydulydifzcc_ind_10\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.009</text><svg x=\"21.06373223430199%\" y=\"40\" height=\"20\" width=\"0.044957056756711467%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">wrong</text> </svg></svg><line x1=\"21.06373173303299%\" x2=\"21.06373223430199%\" y1=\"60\" y2=\"60\" id=\"_fb_duhtbtfzhydulydifzcc_ind_11\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"21.06373198366749%\" y=\"71\" font-size=\"12px\" id=\"_fs_duhtbtfzhydulydifzcc_ind_11\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"21.06373173303299%\" y=\"40\" height=\"20\" width=\"5.012689996419795e-07%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"21.650476523360464%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"21.650476523360464%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"21.650476523360464%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"21.650476523360464%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"21.650476523360464%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"21.650476523360464%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"21.650476523360464%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"21.650476523360464%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"21.108689291058703%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"21.108689291058703%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"21.108689291058703%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"21.108689291058703%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"21.108689291058703%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"21.108689291058703%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"21.108689291058703%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"21.108689291058703%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"21.06373223430199%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"21.06373223430199%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"21.06373223430199%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"21.06373223430199%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"21.06373223430199%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"21.06373223430199%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"21.06373223430199%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"21.06373223430199%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"22.265251553606994%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"21.06373173303299%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"22.265251553606994%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"21.650476523360464%\" y=\"40\" height=\"20\" width=\"0.6147750302465305%\" onmouseover=\"document.getElementById('_tp_duhtbtfzhydulydifzcc_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_duhtbtfzhydulydifzcc_ind_6').style.opacity = 1;document.getElementById('_fb_duhtbtfzhydulydifzcc_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_duhtbtfzhydulydifzcc_ind_6').style.textDecoration = 'none';document.getElementById('_fs_duhtbtfzhydulydifzcc_ind_6').style.opacity = 0;document.getElementById('_fb_duhtbtfzhydulydifzcc_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"21.650476523360464%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"21.108689291058703%\" y=\"40\" height=\"20\" width=\"0.5417872323017612%\" onmouseover=\"document.getElementById('_tp_duhtbtfzhydulydifzcc_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_duhtbtfzhydulydifzcc_ind_2').style.opacity = 1;document.getElementById('_fb_duhtbtfzhydulydifzcc_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_duhtbtfzhydulydifzcc_ind_2').style.textDecoration = 'none';document.getElementById('_fs_duhtbtfzhydulydifzcc_ind_2').style.opacity = 0;document.getElementById('_fb_duhtbtfzhydulydifzcc_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"21.108689291058703%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"21.06373223430199%\" y=\"40\" height=\"20\" width=\"0.044957056756711467%\" onmouseover=\"document.getElementById('_tp_duhtbtfzhydulydifzcc_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_duhtbtfzhydulydifzcc_ind_10').style.opacity = 1;document.getElementById('_fb_duhtbtfzhydulydifzcc_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_duhtbtfzhydulydifzcc_ind_10').style.textDecoration = 'none';document.getElementById('_fs_duhtbtfzhydulydifzcc_ind_10').style.opacity = 0;document.getElementById('_fb_duhtbtfzhydulydifzcc_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"21.06373173303299%\" y=\"40\" height=\"20\" width=\"5.012689996419795e-07%\" onmouseover=\"document.getElementById('_tp_duhtbtfzhydulydifzcc_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_duhtbtfzhydulydifzcc_ind_11').style.opacity = 1;document.getElementById('_fb_duhtbtfzhydulydifzcc_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_duhtbtfzhydulydifzcc_ind_11').style.textDecoration = 'none';document.getElementById('_fs_duhtbtfzhydulydifzcc_ind_11').style.opacity = 0;document.getElementById('_fb_duhtbtfzhydulydifzcc_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"22.265251553606994%\" width=\"21.722155024945145%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"22.265251553606994%\" x2=\"36.76240882931825%\" y1=\"60\" y2=\"60\" id=\"_fb_duhtbtfzhydulydifzcc_ind_9\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"29.51383019146262%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_duhtbtfzhydulydifzcc_ind_9\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-2.742</text><svg x=\"22.265251553606994%\" y=\"40\" height=\"20\" width=\"14.497157275711253%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">greedy</text> </svg></svg><line x1=\"36.76240882931825%\" x2=\"42.738805018136084%\" y1=\"60\" y2=\"60\" id=\"_fb_duhtbtfzhydulydifzcc_ind_8\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"39.75060692372716%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_duhtbtfzhydulydifzcc_ind_8\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.13</text><svg x=\"36.76240882931825%\" y=\"40\" height=\"20\" width=\"5.976396188817837%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"42.738805018136084%\" x2=\"43.28389523422494%\" y1=\"60\" y2=\"60\" id=\"_fb_duhtbtfzhydulydifzcc_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"43.01135012618052%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_duhtbtfzhydulydifzcc_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.103</text><svg x=\"42.738805018136084%\" y=\"40\" height=\"20\" width=\"0.5450902160888589%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">a</text> </svg></svg><line x1=\"43.28389523422494%\" x2=\"43.654351678373516%\" y1=\"60\" y2=\"60\" id=\"_fb_duhtbtfzhydulydifzcc_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"43.46912345629923%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_duhtbtfzhydulydifzcc_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.07</text><svg x=\"43.28389523422494%\" y=\"40\" height=\"20\" width=\"0.3704564441485729%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">minute</text> </svg></svg><line x1=\"43.654351678373516%\" x2=\"43.85484777071466%\" y1=\"60\" y2=\"60\" id=\"_fb_duhtbtfzhydulydifzcc_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"43.75459972454409%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_duhtbtfzhydulydifzcc_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.038</text><svg x=\"43.654351678373516%\" y=\"40\" height=\"20\" width=\"0.2004960923411474%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">im</text> </svg></svg><line x1=\"43.85484777071466%\" x2=\"43.97721701288604%\" y1=\"60\" y2=\"60\" id=\"_fb_duhtbtfzhydulydifzcc_ind_7\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"43.91603239180035%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_duhtbtfzhydulydifzcc_ind_7\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.023</text><svg x=\"43.85484777071466%\" y=\"40\" height=\"20\" width=\"0.12236924217137357%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"43.97721701288604%\" x2=\"43.98740605476328%\" y1=\"60\" y2=\"60\" id=\"_fb_duhtbtfzhydulydifzcc_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"43.98231153382466%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_duhtbtfzhydulydifzcc_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.002</text><svg x=\"43.97721701288604%\" y=\"40\" height=\"20\" width=\"0.010189041877239902%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><line x1=\"43.98740605476328%\" x2=\"43.98740657855214%\" y1=\"60\" y2=\"60\" id=\"_fb_duhtbtfzhydulydifzcc_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"43.98740631665771%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_duhtbtfzhydulydifzcc_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"43.98740605476328%\" y=\"40\" height=\"20\" width=\"5.237888629494591e-07%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"36.76240882931825%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"36.76240882931825%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"36.76240882931825%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"36.76240882931825%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"36.76240882931825%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"36.76240882931825%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"36.76240882931825%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"36.76240882931825%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"42.738805018136084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"42.738805018136084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"42.738805018136084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"42.738805018136084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"42.738805018136084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"42.738805018136084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"42.738805018136084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"42.738805018136084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"43.28389523422494%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"43.28389523422494%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"43.28389523422494%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"43.28389523422494%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"43.28389523422494%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"43.28389523422494%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"43.28389523422494%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"43.28389523422494%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"43.654351678373516%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"43.654351678373516%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"43.654351678373516%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"43.654351678373516%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"43.654351678373516%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"43.654351678373516%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"43.654351678373516%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"43.654351678373516%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"43.85484777071466%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"43.85484777071466%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"43.85484777071466%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"43.85484777071466%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"43.85484777071466%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"43.85484777071466%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"43.85484777071466%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"43.85484777071466%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"43.97721701288604%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"43.97721701288604%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"43.97721701288604%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"43.97721701288604%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"43.97721701288604%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"43.97721701288604%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"43.97721701288604%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"43.97721701288604%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"43.98740605476328%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"43.98740605476328%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"43.98740605476328%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"43.98740605476328%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"43.98740605476328%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"43.98740605476328%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"43.98740605476328%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"43.98740605476328%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"22.265251553606994%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"43.98740657855214%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"36.76240882931825%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"22.265251553606994%\" y=\"40\" height=\"20\" width=\"14.497157275711253%\" onmouseover=\"document.getElementById('_tp_duhtbtfzhydulydifzcc_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_duhtbtfzhydulydifzcc_ind_9').style.opacity = 1;document.getElementById('_fb_duhtbtfzhydulydifzcc_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_duhtbtfzhydulydifzcc_ind_9').style.textDecoration = 'none';document.getElementById('_fs_duhtbtfzhydulydifzcc_ind_9').style.opacity = 0;document.getElementById('_fb_duhtbtfzhydulydifzcc_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"42.738805018136084%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"36.76240882931825%\" y=\"40\" height=\"20\" width=\"5.976396188817837%\" onmouseover=\"document.getElementById('_tp_duhtbtfzhydulydifzcc_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_duhtbtfzhydulydifzcc_ind_8').style.opacity = 1;document.getElementById('_fb_duhtbtfzhydulydifzcc_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_duhtbtfzhydulydifzcc_ind_8').style.textDecoration = 'none';document.getElementById('_fs_duhtbtfzhydulydifzcc_ind_8').style.opacity = 0;document.getElementById('_fb_duhtbtfzhydulydifzcc_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"43.28389523422494%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"42.738805018136084%\" y=\"40\" height=\"20\" width=\"0.5450902160888589%\" onmouseover=\"document.getElementById('_tp_duhtbtfzhydulydifzcc_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_duhtbtfzhydulydifzcc_ind_3').style.opacity = 1;document.getElementById('_fb_duhtbtfzhydulydifzcc_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_duhtbtfzhydulydifzcc_ind_3').style.textDecoration = 'none';document.getElementById('_fs_duhtbtfzhydulydifzcc_ind_3').style.opacity = 0;document.getElementById('_fb_duhtbtfzhydulydifzcc_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"43.654351678373516%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"43.28389523422494%\" y=\"40\" height=\"20\" width=\"0.3704564441485729%\" onmouseover=\"document.getElementById('_tp_duhtbtfzhydulydifzcc_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_duhtbtfzhydulydifzcc_ind_4').style.opacity = 1;document.getElementById('_fb_duhtbtfzhydulydifzcc_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_duhtbtfzhydulydifzcc_ind_4').style.textDecoration = 'none';document.getElementById('_fs_duhtbtfzhydulydifzcc_ind_4').style.opacity = 0;document.getElementById('_fb_duhtbtfzhydulydifzcc_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"43.85484777071466%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"43.654351678373516%\" y=\"40\" height=\"20\" width=\"0.2004960923411474%\" onmouseover=\"document.getElementById('_tp_duhtbtfzhydulydifzcc_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_duhtbtfzhydulydifzcc_ind_1').style.opacity = 1;document.getElementById('_fb_duhtbtfzhydulydifzcc_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_duhtbtfzhydulydifzcc_ind_1').style.textDecoration = 'none';document.getElementById('_fs_duhtbtfzhydulydifzcc_ind_1').style.opacity = 0;document.getElementById('_fb_duhtbtfzhydulydifzcc_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"43.97721701288604%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"43.85484777071466%\" y=\"40\" height=\"20\" width=\"0.12236924217137357%\" onmouseover=\"document.getElementById('_tp_duhtbtfzhydulydifzcc_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_duhtbtfzhydulydifzcc_ind_7').style.opacity = 1;document.getElementById('_fb_duhtbtfzhydulydifzcc_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_duhtbtfzhydulydifzcc_ind_7').style.textDecoration = 'none';document.getElementById('_fs_duhtbtfzhydulydifzcc_ind_7').style.opacity = 0;document.getElementById('_fb_duhtbtfzhydulydifzcc_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"43.98740605476328%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"43.97721701288604%\" y=\"40\" height=\"20\" width=\"0.010189041877239902%\" onmouseover=\"document.getElementById('_tp_duhtbtfzhydulydifzcc_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_duhtbtfzhydulydifzcc_ind_5').style.opacity = 1;document.getElementById('_fb_duhtbtfzhydulydifzcc_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_duhtbtfzhydulydifzcc_ind_5').style.textDecoration = 'none';document.getElementById('_fs_duhtbtfzhydulydifzcc_ind_5').style.opacity = 0;document.getElementById('_fb_duhtbtfzhydulydifzcc_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"43.98740605476328%\" y=\"40\" height=\"20\" width=\"5.237888629494591e-07%\" onmouseover=\"document.getElementById('_tp_duhtbtfzhydulydifzcc_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_duhtbtfzhydulydifzcc_ind_0').style.opacity = 1;document.getElementById('_fb_duhtbtfzhydulydifzcc_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_duhtbtfzhydulydifzcc_ind_0').style.textDecoration = 'none';document.getElementById('_fs_duhtbtfzhydulydifzcc_ind_0').style.opacity = 0;document.getElementById('_fb_duhtbtfzhydulydifzcc_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_duhtbtfzhydulydifzcc_ind_0'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_duhtbtfzhydulydifzcc_ind_0').style.opacity = 1; document.getElementById('_fs_duhtbtfzhydulydifzcc_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_duhtbtfzhydulydifzcc_ind_0').style.opacity = 0; document.getElementById('_fs_duhtbtfzhydulydifzcc_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.038</div\n",
|
|
" ><div id='_tp_duhtbtfzhydulydifzcc_ind_1'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_duhtbtfzhydulydifzcc_ind_1').style.opacity = 1; document.getElementById('_fs_duhtbtfzhydulydifzcc_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_duhtbtfzhydulydifzcc_ind_1').style.opacity = 0; document.getElementById('_fs_duhtbtfzhydulydifzcc_ind_1').style.opacity = 0;\"\n",
|
|
" >im </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.102</div\n",
|
|
" ><div id='_tp_duhtbtfzhydulydifzcc_ind_2'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_duhtbtfzhydulydifzcc_ind_2').style.opacity = 1; document.getElementById('_fs_duhtbtfzhydulydifzcc_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_duhtbtfzhydulydifzcc_ind_2').style.opacity = 0; document.getElementById('_fs_duhtbtfzhydulydifzcc_ind_2').style.opacity = 0;\"\n",
|
|
" >grabbing </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.103</div\n",
|
|
" ><div id='_tp_duhtbtfzhydulydifzcc_ind_3'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_duhtbtfzhydulydifzcc_ind_3').style.opacity = 1; document.getElementById('_fs_duhtbtfzhydulydifzcc_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_duhtbtfzhydulydifzcc_ind_3').style.opacity = 0; document.getElementById('_fs_duhtbtfzhydulydifzcc_ind_3').style.opacity = 0;\"\n",
|
|
" >a </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.07</div\n",
|
|
" ><div id='_tp_duhtbtfzhydulydifzcc_ind_4'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_duhtbtfzhydulydifzcc_ind_4').style.opacity = 1; document.getElementById('_fs_duhtbtfzhydulydifzcc_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_duhtbtfzhydulydifzcc_ind_4').style.opacity = 0; document.getElementById('_fs_duhtbtfzhydulydifzcc_ind_4').style.opacity = 0;\"\n",
|
|
" >minute </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.002</div\n",
|
|
" ><div id='_tp_duhtbtfzhydulydifzcc_ind_5'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_duhtbtfzhydulydifzcc_ind_5').style.opacity = 1; document.getElementById('_fs_duhtbtfzhydulydifzcc_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_duhtbtfzhydulydifzcc_ind_5').style.opacity = 0; document.getElementById('_fs_duhtbtfzhydulydifzcc_ind_5').style.opacity = 0;\"\n",
|
|
" >to </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.116</div\n",
|
|
" ><div id='_tp_duhtbtfzhydulydifzcc_ind_6'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.014656367597544035); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_duhtbtfzhydulydifzcc_ind_6').style.opacity = 1; document.getElementById('_fs_duhtbtfzhydulydifzcc_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_duhtbtfzhydulydifzcc_ind_6').style.opacity = 0; document.getElementById('_fs_duhtbtfzhydulydifzcc_ind_6').style.opacity = 0;\"\n",
|
|
" >post </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.023</div\n",
|
|
" ><div id='_tp_duhtbtfzhydulydifzcc_ind_7'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_duhtbtfzhydulydifzcc_ind_7').style.opacity = 1; document.getElementById('_fs_duhtbtfzhydulydifzcc_ind_7').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_duhtbtfzhydulydifzcc_ind_7').style.opacity = 0; document.getElementById('_fs_duhtbtfzhydulydifzcc_ind_7').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.13</div\n",
|
|
" ><div id='_tp_duhtbtfzhydulydifzcc_ind_8'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.1565458506634977); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_duhtbtfzhydulydifzcc_ind_8').style.opacity = 1; document.getElementById('_fs_duhtbtfzhydulydifzcc_ind_8').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_duhtbtfzhydulydifzcc_ind_8').style.opacity = 0; document.getElementById('_fs_duhtbtfzhydulydifzcc_ind_8').style.opacity = 0;\"\n",
|
|
" >feel </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-2.742</div\n",
|
|
" ><div id='_tp_duhtbtfzhydulydifzcc_ind_9'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.39302832244008723); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_duhtbtfzhydulydifzcc_ind_9').style.opacity = 1; document.getElementById('_fs_duhtbtfzhydulydifzcc_ind_9').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_duhtbtfzhydulydifzcc_ind_9').style.opacity = 0; document.getElementById('_fs_duhtbtfzhydulydifzcc_ind_9').style.opacity = 0;\"\n",
|
|
" >greedy </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.009</div\n",
|
|
" ><div id='_tp_duhtbtfzhydulydifzcc_ind_10'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_duhtbtfzhydulydifzcc_ind_10').style.opacity = 1; document.getElementById('_fs_duhtbtfzhydulydifzcc_ind_10').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_duhtbtfzhydulydifzcc_ind_10').style.opacity = 0; document.getElementById('_fs_duhtbtfzhydulydifzcc_ind_10').style.opacity = 0;\"\n",
|
|
" >wrong</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_duhtbtfzhydulydifzcc_ind_11'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_duhtbtfzhydulydifzcc_ind_11').style.opacity = 1; document.getElementById('_fs_duhtbtfzhydulydifzcc_ind_11').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_duhtbtfzhydulydifzcc_ind_11').style.opacity = 0; document.getElementById('_fs_duhtbtfzhydulydifzcc_ind_11').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_apuwqawtzdakfvbqpgxu_output_4_zoom' style='display: none;'><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"55.851155241240406%\" y1=\"33\" x2=\"55.851155241240406%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"55.851155241240406%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"36.631321534786544%\" y1=\"33\" x2=\"36.631321534786544%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"36.631321534786544%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-5</text><line x1=\"17.41148782833269%\" y1=\"33\" x2=\"17.41148782833269%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"17.41148782833269%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6</text><line x1=\"75.07098894769426%\" y1=\"33\" x2=\"75.07098894769426%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"75.07098894769426%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-3</text><line x1=\"87.29883924651963%\" y1=\"33\" x2=\"87.29883924651963%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"87.29883924651963%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2.36379</text><text x=\"87.29883924651963%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2.36379</text><text x=\"87.29883924651963%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"12.701160561282023%\" y1=\"33\" x2=\"12.701160561282023%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"12.701160561282023%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.24508</text><text x=\"12.701160561282023%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.24508</text><text x=\"12.701160561282023%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">fear</tspan>(inputs)</text><rect x=\"8.333333317316805%\" width=\"4.367827243965224%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"10.466298447448965%\" x2=\"12.701160561282023%\" y1=\"60\" y2=\"60\" id=\"_fb_omobluxirqdmhqpnfwui_ind_6\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"11.583729504365493%\" y=\"71\" font-size=\"12px\" id=\"_fs_omobluxirqdmhqpnfwui_ind_6\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.116</text><svg x=\"10.466298447448965%\" y=\"40\" height=\"20\" width=\"2.234862113833058%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">post</text> </svg></svg><line x1=\"8.49676536679647%\" x2=\"10.466298447448965%\" y1=\"60\" y2=\"60\" id=\"_fb_omobluxirqdmhqpnfwui_ind_2\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"9.481531907122719%\" y=\"71\" font-size=\"12px\" id=\"_fs_omobluxirqdmhqpnfwui_ind_2\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.102</text><svg x=\"8.49676536679647%\" y=\"40\" height=\"20\" width=\"1.9695330806524947%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">grabbing</text> </svg></svg><line x1=\"8.333335139555912%\" x2=\"8.49676536679647%\" y1=\"60\" y2=\"60\" id=\"_fb_omobluxirqdmhqpnfwui_ind_10\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.41505025317619%\" y=\"71\" font-size=\"12px\" id=\"_fs_omobluxirqdmhqpnfwui_ind_10\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.009</text><svg x=\"8.333335139555912%\" y=\"40\" height=\"20\" width=\"0.16343022724055878%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">wrong</text> </svg></svg><line x1=\"8.333333317316805%\" x2=\"8.333335139555912%\" y1=\"60\" y2=\"60\" id=\"_fb_omobluxirqdmhqpnfwui_ind_11\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.333334228436359%\" y=\"71\" font-size=\"12px\" id=\"_fs_omobluxirqdmhqpnfwui_ind_11\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"8.333333317316805%\" y=\"40\" height=\"20\" width=\"1.822239106274992e-06%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"10.466298447448965%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"10.466298447448965%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"10.466298447448965%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"10.466298447448965%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"10.466298447448965%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"10.466298447448965%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"10.466298447448965%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"10.466298447448965%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.49676536679647%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.49676536679647%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.49676536679647%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.49676536679647%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.49676536679647%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.49676536679647%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.49676536679647%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.49676536679647%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.333335139555912%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.333335139555912%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.333335139555912%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.333335139555912%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.333335139555912%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.333335139555912%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.333335139555912%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.333335139555912%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"12.701160561282023%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.333333317316805%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"12.701160561282023%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"10.466298447448965%\" y=\"40\" height=\"20\" width=\"2.234862113833058%\" onmouseover=\"document.getElementById('_tp_omobluxirqdmhqpnfwui_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_omobluxirqdmhqpnfwui_ind_6').style.opacity = 1;document.getElementById('_fb_omobluxirqdmhqpnfwui_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_omobluxirqdmhqpnfwui_ind_6').style.textDecoration = 'none';document.getElementById('_fs_omobluxirqdmhqpnfwui_ind_6').style.opacity = 0;document.getElementById('_fb_omobluxirqdmhqpnfwui_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"10.466298447448965%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.49676536679647%\" y=\"40\" height=\"20\" width=\"1.9695330806524947%\" onmouseover=\"document.getElementById('_tp_omobluxirqdmhqpnfwui_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_omobluxirqdmhqpnfwui_ind_2').style.opacity = 1;document.getElementById('_fb_omobluxirqdmhqpnfwui_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_omobluxirqdmhqpnfwui_ind_2').style.textDecoration = 'none';document.getElementById('_fs_omobluxirqdmhqpnfwui_ind_2').style.opacity = 0;document.getElementById('_fb_omobluxirqdmhqpnfwui_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"8.49676536679647%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.333335139555912%\" y=\"40\" height=\"20\" width=\"0.16343022724055878%\" onmouseover=\"document.getElementById('_tp_omobluxirqdmhqpnfwui_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_omobluxirqdmhqpnfwui_ind_10').style.opacity = 1;document.getElementById('_fb_omobluxirqdmhqpnfwui_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_omobluxirqdmhqpnfwui_ind_10').style.textDecoration = 'none';document.getElementById('_fs_omobluxirqdmhqpnfwui_ind_10').style.opacity = 0;document.getElementById('_fb_omobluxirqdmhqpnfwui_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"8.333333317316805%\" y=\"40\" height=\"20\" width=\"1.822239106274992e-06%\" onmouseover=\"document.getElementById('_tp_omobluxirqdmhqpnfwui_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_omobluxirqdmhqpnfwui_ind_11').style.opacity = 1;document.getElementById('_fb_omobluxirqdmhqpnfwui_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_omobluxirqdmhqpnfwui_ind_11').style.textDecoration = 'none';document.getElementById('_fs_omobluxirqdmhqpnfwui_ind_11').style.opacity = 0;document.getElementById('_fb_omobluxirqdmhqpnfwui_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"12.701160561282023%\" width=\"78.96550592920283%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"12.701160561282023%\" x2=\"65.40197949463062%\" y1=\"60\" y2=\"60\" id=\"_fb_omobluxirqdmhqpnfwui_ind_9\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"39.05157002795632%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_omobluxirqdmhqpnfwui_ind_9\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-2.742</text><svg x=\"12.701160561282023%\" y=\"40\" height=\"20\" width=\"52.7008189333486%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">greedy</text> </svg></svg><line x1=\"65.40197949463062%\" x2=\"87.12768526099723%\" y1=\"60\" y2=\"60\" id=\"_fb_omobluxirqdmhqpnfwui_ind_8\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"76.26483237781392%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_omobluxirqdmhqpnfwui_ind_8\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.13</text><svg x=\"65.40197949463062%\" y=\"40\" height=\"20\" width=\"21.725705766366602%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"87.12768526099723%\" x2=\"89.10922551982908%\" y1=\"60\" y2=\"60\" id=\"_fb_omobluxirqdmhqpnfwui_ind_3\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"88.11845539041315%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_omobluxirqdmhqpnfwui_ind_3\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.103</text><svg x=\"87.12768526099723%\" y=\"40\" height=\"20\" width=\"1.9815402588318562%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">a</text> </svg></svg><line x1=\"89.10922551982908%\" x2=\"90.45592802256567%\" y1=\"60\" y2=\"60\" id=\"_fb_omobluxirqdmhqpnfwui_ind_4\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"89.78257677119737%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_omobluxirqdmhqpnfwui_ind_4\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.07</text><svg x=\"89.10922551982908%\" y=\"40\" height=\"20\" width=\"1.3467025027365906%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">minute</text> </svg></svg><line x1=\"90.45592802256567%\" x2=\"91.18478182875411%\" y1=\"60\" y2=\"60\" id=\"_fb_omobluxirqdmhqpnfwui_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"90.8203549256599%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_omobluxirqdmhqpnfwui_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.038</text><svg x=\"90.45592802256567%\" y=\"40\" height=\"20\" width=\"0.7288538061884395%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">im</text> </svg></svg><line x1=\"91.18478182875411%\" x2=\"91.62962485225428%\" y1=\"60\" y2=\"60\" id=\"_fb_omobluxirqdmhqpnfwui_ind_7\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.4072033405042%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_omobluxirqdmhqpnfwui_ind_7\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.023</text><svg x=\"91.18478182875411%\" y=\"40\" height=\"20\" width=\"0.44484302350016947%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"91.62962485225428%\" x2=\"91.6666645863804%\" y1=\"60\" y2=\"60\" id=\"_fb_omobluxirqdmhqpnfwui_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.64814471931734%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_omobluxirqdmhqpnfwui_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.002</text><svg x=\"91.62962485225428%\" y=\"40\" height=\"20\" width=\"0.03703973412612527%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><line x1=\"91.6666645863804%\" x2=\"91.66666649048486%\" y1=\"60\" y2=\"60\" id=\"_fb_omobluxirqdmhqpnfwui_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.66666553843262%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_omobluxirqdmhqpnfwui_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"91.6666645863804%\" y=\"40\" height=\"20\" width=\"1.9041044510004212e-06%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"65.40197949463062%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"65.40197949463062%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"65.40197949463062%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"65.40197949463062%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"65.40197949463062%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"65.40197949463062%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"65.40197949463062%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"65.40197949463062%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"87.12768526099723%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"87.12768526099723%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"87.12768526099723%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"87.12768526099723%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"87.12768526099723%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"87.12768526099723%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"87.12768526099723%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"87.12768526099723%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"89.10922551982908%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"89.10922551982908%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"89.10922551982908%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"89.10922551982908%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"89.10922551982908%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"89.10922551982908%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"89.10922551982908%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"89.10922551982908%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"90.45592802256567%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.45592802256567%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.45592802256567%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.45592802256567%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.45592802256567%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.45592802256567%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.45592802256567%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.45592802256567%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.18478182875411%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.18478182875411%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.18478182875411%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.18478182875411%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.18478182875411%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.18478182875411%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.18478182875411%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.18478182875411%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.62962485225428%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.62962485225428%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.62962485225428%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.62962485225428%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.62962485225428%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.62962485225428%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.62962485225428%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.62962485225428%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.6666645863804%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.6666645863804%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.6666645863804%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.6666645863804%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.6666645863804%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.6666645863804%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.6666645863804%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.6666645863804%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"12.701160561282023%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66666649048486%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"65.40197949463062%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"12.701160561282023%\" y=\"40\" height=\"20\" width=\"52.7008189333486%\" onmouseover=\"document.getElementById('_tp_omobluxirqdmhqpnfwui_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_omobluxirqdmhqpnfwui_ind_9').style.opacity = 1;document.getElementById('_fb_omobluxirqdmhqpnfwui_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_omobluxirqdmhqpnfwui_ind_9').style.textDecoration = 'none';document.getElementById('_fs_omobluxirqdmhqpnfwui_ind_9').style.opacity = 0;document.getElementById('_fb_omobluxirqdmhqpnfwui_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"87.12768526099723%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"65.40197949463062%\" y=\"40\" height=\"20\" width=\"21.725705766366602%\" onmouseover=\"document.getElementById('_tp_omobluxirqdmhqpnfwui_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_omobluxirqdmhqpnfwui_ind_8').style.opacity = 1;document.getElementById('_fb_omobluxirqdmhqpnfwui_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_omobluxirqdmhqpnfwui_ind_8').style.textDecoration = 'none';document.getElementById('_fs_omobluxirqdmhqpnfwui_ind_8').style.opacity = 0;document.getElementById('_fb_omobluxirqdmhqpnfwui_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"89.10922551982908%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"87.12768526099723%\" y=\"40\" height=\"20\" width=\"1.9815402588318562%\" onmouseover=\"document.getElementById('_tp_omobluxirqdmhqpnfwui_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_omobluxirqdmhqpnfwui_ind_3').style.opacity = 1;document.getElementById('_fb_omobluxirqdmhqpnfwui_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_omobluxirqdmhqpnfwui_ind_3').style.textDecoration = 'none';document.getElementById('_fs_omobluxirqdmhqpnfwui_ind_3').style.opacity = 0;document.getElementById('_fb_omobluxirqdmhqpnfwui_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"90.45592802256567%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"89.10922551982908%\" y=\"40\" height=\"20\" width=\"1.3467025027365906%\" onmouseover=\"document.getElementById('_tp_omobluxirqdmhqpnfwui_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_omobluxirqdmhqpnfwui_ind_4').style.opacity = 1;document.getElementById('_fb_omobluxirqdmhqpnfwui_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_omobluxirqdmhqpnfwui_ind_4').style.textDecoration = 'none';document.getElementById('_fs_omobluxirqdmhqpnfwui_ind_4').style.opacity = 0;document.getElementById('_fb_omobluxirqdmhqpnfwui_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.18478182875411%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"90.45592802256567%\" y=\"40\" height=\"20\" width=\"0.7288538061884395%\" onmouseover=\"document.getElementById('_tp_omobluxirqdmhqpnfwui_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_omobluxirqdmhqpnfwui_ind_1').style.opacity = 1;document.getElementById('_fb_omobluxirqdmhqpnfwui_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_omobluxirqdmhqpnfwui_ind_1').style.textDecoration = 'none';document.getElementById('_fs_omobluxirqdmhqpnfwui_ind_1').style.opacity = 0;document.getElementById('_fb_omobluxirqdmhqpnfwui_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.62962485225428%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.18478182875411%\" y=\"40\" height=\"20\" width=\"0.44484302350016947%\" onmouseover=\"document.getElementById('_tp_omobluxirqdmhqpnfwui_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_omobluxirqdmhqpnfwui_ind_7').style.opacity = 1;document.getElementById('_fb_omobluxirqdmhqpnfwui_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_omobluxirqdmhqpnfwui_ind_7').style.textDecoration = 'none';document.getElementById('_fs_omobluxirqdmhqpnfwui_ind_7').style.opacity = 0;document.getElementById('_fb_omobluxirqdmhqpnfwui_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.6666645863804%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.62962485225428%\" y=\"40\" height=\"20\" width=\"0.03703973412612527%\" onmouseover=\"document.getElementById('_tp_omobluxirqdmhqpnfwui_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_omobluxirqdmhqpnfwui_ind_5').style.opacity = 1;document.getElementById('_fb_omobluxirqdmhqpnfwui_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_omobluxirqdmhqpnfwui_ind_5').style.textDecoration = 'none';document.getElementById('_fs_omobluxirqdmhqpnfwui_ind_5').style.opacity = 0;document.getElementById('_fb_omobluxirqdmhqpnfwui_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"91.6666645863804%\" y=\"40\" height=\"20\" width=\"1.9041044510004212e-06%\" onmouseover=\"document.getElementById('_tp_omobluxirqdmhqpnfwui_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_omobluxirqdmhqpnfwui_ind_0').style.opacity = 1;document.getElementById('_fb_omobluxirqdmhqpnfwui_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_omobluxirqdmhqpnfwui_ind_0').style.textDecoration = 'none';document.getElementById('_fs_omobluxirqdmhqpnfwui_ind_0').style.opacity = 0;document.getElementById('_fb_omobluxirqdmhqpnfwui_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_omobluxirqdmhqpnfwui_ind_0'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_omobluxirqdmhqpnfwui_ind_0').style.opacity = 1; document.getElementById('_fs_omobluxirqdmhqpnfwui_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_omobluxirqdmhqpnfwui_ind_0').style.opacity = 0; document.getElementById('_fs_omobluxirqdmhqpnfwui_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.038</div\n",
|
|
" ><div id='_tp_omobluxirqdmhqpnfwui_ind_1'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_omobluxirqdmhqpnfwui_ind_1').style.opacity = 1; document.getElementById('_fs_omobluxirqdmhqpnfwui_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_omobluxirqdmhqpnfwui_ind_1').style.opacity = 0; document.getElementById('_fs_omobluxirqdmhqpnfwui_ind_1').style.opacity = 0;\"\n",
|
|
" >im </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.102</div\n",
|
|
" ><div id='_tp_omobluxirqdmhqpnfwui_ind_2'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.030421865715983164); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_omobluxirqdmhqpnfwui_ind_2').style.opacity = 1; document.getElementById('_fs_omobluxirqdmhqpnfwui_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_omobluxirqdmhqpnfwui_ind_2').style.opacity = 0; document.getElementById('_fs_omobluxirqdmhqpnfwui_ind_2').style.opacity = 0;\"\n",
|
|
" >grabbing </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.103</div\n",
|
|
" ><div id='_tp_omobluxirqdmhqpnfwui_ind_3'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03042186571598325); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_omobluxirqdmhqpnfwui_ind_3').style.opacity = 1; document.getElementById('_fs_omobluxirqdmhqpnfwui_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_omobluxirqdmhqpnfwui_ind_3').style.opacity = 0; document.getElementById('_fs_omobluxirqdmhqpnfwui_ind_3').style.opacity = 0;\"\n",
|
|
" >a </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.07</div\n",
|
|
" ><div id='_tp_omobluxirqdmhqpnfwui_ind_4'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.022539116656763607); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_omobluxirqdmhqpnfwui_ind_4').style.opacity = 1; document.getElementById('_fs_omobluxirqdmhqpnfwui_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_omobluxirqdmhqpnfwui_ind_4').style.opacity = 0; document.getElementById('_fs_omobluxirqdmhqpnfwui_ind_4').style.opacity = 0;\"\n",
|
|
" >minute </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.002</div\n",
|
|
" ><div id='_tp_omobluxirqdmhqpnfwui_ind_5'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_omobluxirqdmhqpnfwui_ind_5').style.opacity = 1; document.getElementById('_fs_omobluxirqdmhqpnfwui_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_omobluxirqdmhqpnfwui_ind_5').style.opacity = 0; document.getElementById('_fs_omobluxirqdmhqpnfwui_ind_5').style.opacity = 0;\"\n",
|
|
" >to </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.116</div\n",
|
|
" ><div id='_tp_omobluxirqdmhqpnfwui_ind_6'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.03830461477520289); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_omobluxirqdmhqpnfwui_ind_6').style.opacity = 1; document.getElementById('_fs_omobluxirqdmhqpnfwui_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_omobluxirqdmhqpnfwui_ind_6').style.opacity = 0; document.getElementById('_fs_omobluxirqdmhqpnfwui_ind_6').style.opacity = 0;\"\n",
|
|
" >post </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.023</div\n",
|
|
" ><div id='_tp_omobluxirqdmhqpnfwui_ind_7'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_omobluxirqdmhqpnfwui_ind_7').style.opacity = 1; document.getElementById('_fs_omobluxirqdmhqpnfwui_ind_7').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_omobluxirqdmhqpnfwui_ind_7').style.opacity = 0; document.getElementById('_fs_omobluxirqdmhqpnfwui_ind_7').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.13</div\n",
|
|
" ><div id='_tp_omobluxirqdmhqpnfwui_ind_8'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.4087938205585264); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_omobluxirqdmhqpnfwui_ind_8').style.opacity = 1; document.getElementById('_fs_omobluxirqdmhqpnfwui_ind_8').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_omobluxirqdmhqpnfwui_ind_8').style.opacity = 0; document.getElementById('_fs_omobluxirqdmhqpnfwui_ind_8').style.opacity = 0;\"\n",
|
|
" >feel </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-2.742</div\n",
|
|
" ><div id='_tp_omobluxirqdmhqpnfwui_ind_9'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 1.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_omobluxirqdmhqpnfwui_ind_9').style.opacity = 1; document.getElementById('_fs_omobluxirqdmhqpnfwui_ind_9').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_omobluxirqdmhqpnfwui_ind_9').style.opacity = 0; document.getElementById('_fs_omobluxirqdmhqpnfwui_ind_9').style.opacity = 0;\"\n",
|
|
" >greedy </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.009</div\n",
|
|
" ><div id='_tp_omobluxirqdmhqpnfwui_ind_10'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_omobluxirqdmhqpnfwui_ind_10').style.opacity = 1; document.getElementById('_fs_omobluxirqdmhqpnfwui_ind_10').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_omobluxirqdmhqpnfwui_ind_10').style.opacity = 0; document.getElementById('_fs_omobluxirqdmhqpnfwui_ind_10').style.opacity = 0;\"\n",
|
|
" >wrong</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_omobluxirqdmhqpnfwui_ind_11'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_omobluxirqdmhqpnfwui_ind_11').style.opacity = 1; document.getElementById('_fs_omobluxirqdmhqpnfwui_ind_11').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_omobluxirqdmhqpnfwui_ind_11').style.opacity = 0; document.getElementById('_fs_omobluxirqdmhqpnfwui_ind_11').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_apuwqawtzdakfvbqpgxu_output_5' style='display: none';><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"49.99634084343776%\" y1=\"33\" x2=\"49.99634084343776%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"49.99634084343776%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1</text><line x1=\"34.135128947971666%\" y1=\"33\" x2=\"34.135128947971666%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"34.135128947971666%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"18.273917052505578%\" y1=\"33\" x2=\"18.273917052505578%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"18.273917052505578%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-7</text><line x1=\"65.85755273890385%\" y1=\"33\" x2=\"65.85755273890385%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"65.85755273890385%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">2</text><line x1=\"81.71876463436993%\" y1=\"33\" x2=\"81.71876463436993%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"81.71876463436993%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">5</text><line x1=\"45.659722375251924%\" y1=\"33\" x2=\"45.659722375251924%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"45.659722375251924%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1.82023</text><text x=\"45.659722375251924%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1.82023</text><text x=\"45.659722375251924%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"21.137501335047883%\" y1=\"33\" x2=\"21.137501335047883%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"21.137501335047883%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.45838</text><text x=\"21.137501335047883%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.45838</text><text x=\"21.137501335047883%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">surprise</tspan>(inputs)</text><rect x=\"19.972938674387965%\" width=\"1.1645626606599173%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"20.269323267282083%\" x2=\"21.137501335047883%\" y1=\"60\" y2=\"60\" id=\"_fb_dshnqwsvqguidghkyjxd_ind_4\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"20.70341230116498%\" y=\"71\" font-size=\"12px\" id=\"_fs_dshnqwsvqguidghkyjxd_ind_4\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.164</text><svg x=\"20.269323267282083%\" y=\"40\" height=\"20\" width=\"0.8681780677658004%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">minute</text> </svg></svg><line x1=\"20.057933735169215%\" x2=\"20.269323267282083%\" y1=\"60\" y2=\"60\" id=\"_fb_dshnqwsvqguidghkyjxd_ind_7\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"20.16362850122565%\" y=\"71\" font-size=\"12px\" id=\"_fs_dshnqwsvqguidghkyjxd_ind_7\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.04</text><svg x=\"20.057933735169215%\" y=\"40\" height=\"20\" width=\"0.21138953211286804%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"19.972940184718727%\" x2=\"20.057933735169215%\" y1=\"60\" y2=\"60\" id=\"_fb_dshnqwsvqguidghkyjxd_ind_3\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"20.01543695994397%\" y=\"71\" font-size=\"12px\" id=\"_fs_dshnqwsvqguidghkyjxd_ind_3\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.016</text><svg x=\"19.972940184718727%\" y=\"40\" height=\"20\" width=\"0.08499355045048773%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">a</text> </svg></svg><line x1=\"19.972938674387965%\" x2=\"19.972940184718727%\" y1=\"60\" y2=\"60\" id=\"_fb_dshnqwsvqguidghkyjxd_ind_11\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"19.972939429553346%\" y=\"71\" font-size=\"12px\" id=\"_fs_dshnqwsvqguidghkyjxd_ind_11\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"19.972938674387965%\" y=\"40\" height=\"20\" width=\"1.5103307617891915e-06%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"20.269323267282083%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"20.269323267282083%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"20.269323267282083%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"20.269323267282083%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"20.269323267282083%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"20.269323267282083%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"20.269323267282083%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"20.269323267282083%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"20.057933735169215%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"20.057933735169215%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"20.057933735169215%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"20.057933735169215%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"20.057933735169215%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"20.057933735169215%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"20.057933735169215%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"20.057933735169215%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"19.972940184718727%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"19.972940184718727%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"19.972940184718727%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"19.972940184718727%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"19.972940184718727%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"19.972940184718727%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"19.972940184718727%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"19.972940184718727%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"21.137501335047883%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"19.972938674387965%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"21.137501335047883%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"20.269323267282083%\" y=\"40\" height=\"20\" width=\"0.8681780677658004%\" onmouseover=\"document.getElementById('_tp_dshnqwsvqguidghkyjxd_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_dshnqwsvqguidghkyjxd_ind_4').style.opacity = 1;document.getElementById('_fb_dshnqwsvqguidghkyjxd_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dshnqwsvqguidghkyjxd_ind_4').style.textDecoration = 'none';document.getElementById('_fs_dshnqwsvqguidghkyjxd_ind_4').style.opacity = 0;document.getElementById('_fb_dshnqwsvqguidghkyjxd_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"20.269323267282083%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"20.057933735169215%\" y=\"40\" height=\"20\" width=\"0.21138953211286804%\" onmouseover=\"document.getElementById('_tp_dshnqwsvqguidghkyjxd_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_dshnqwsvqguidghkyjxd_ind_7').style.opacity = 1;document.getElementById('_fb_dshnqwsvqguidghkyjxd_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dshnqwsvqguidghkyjxd_ind_7').style.textDecoration = 'none';document.getElementById('_fs_dshnqwsvqguidghkyjxd_ind_7').style.opacity = 0;document.getElementById('_fb_dshnqwsvqguidghkyjxd_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"20.057933735169215%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"19.972940184718727%\" y=\"40\" height=\"20\" width=\"0.08499355045048773%\" onmouseover=\"document.getElementById('_tp_dshnqwsvqguidghkyjxd_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_dshnqwsvqguidghkyjxd_ind_3').style.opacity = 1;document.getElementById('_fb_dshnqwsvqguidghkyjxd_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dshnqwsvqguidghkyjxd_ind_3').style.textDecoration = 'none';document.getElementById('_fs_dshnqwsvqguidghkyjxd_ind_3').style.opacity = 0;document.getElementById('_fb_dshnqwsvqguidghkyjxd_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"19.972938674387965%\" y=\"40\" height=\"20\" width=\"1.5103307617891915e-06%\" onmouseover=\"document.getElementById('_tp_dshnqwsvqguidghkyjxd_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_dshnqwsvqguidghkyjxd_ind_11').style.opacity = 1;document.getElementById('_fb_dshnqwsvqguidghkyjxd_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dshnqwsvqguidghkyjxd_ind_11').style.textDecoration = 'none';document.getElementById('_fs_dshnqwsvqguidghkyjxd_ind_11').style.opacity = 0;document.getElementById('_fb_dshnqwsvqguidghkyjxd_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"21.137501335047883%\" width=\"25.68678370086396%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"21.137501335047883%\" x2=\"35.768883044398976%\" y1=\"60\" y2=\"60\" id=\"_fb_dshnqwsvqguidghkyjxd_ind_9\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"28.45319218972343%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dshnqwsvqguidghkyjxd_ind_9\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-2.767</text><svg x=\"21.137501335047883%\" y=\"40\" height=\"20\" width=\"14.631381709351093%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">greedy</text> </svg></svg><line x1=\"35.768883044398976%\" x2=\"41.63971110766439%\" y1=\"60\" y2=\"60\" id=\"_fb_dshnqwsvqguidghkyjxd_ind_8\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"38.70429707603168%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dshnqwsvqguidghkyjxd_ind_8\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.11</text><svg x=\"35.768883044398976%\" y=\"40\" height=\"20\" width=\"5.870828063265414%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"41.63971110766439%\" x2=\"44.542925408526486%\" y1=\"60\" y2=\"60\" id=\"_fb_dshnqwsvqguidghkyjxd_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"43.09131825809544%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dshnqwsvqguidghkyjxd_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.549</text><svg x=\"41.63971110766439%\" y=\"40\" height=\"20\" width=\"2.9032143008620963%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">grabbing</text> </svg></svg><line x1=\"44.542925408526486%\" x2=\"45.770197518055646%\" y1=\"60\" y2=\"60\" id=\"_fb_dshnqwsvqguidghkyjxd_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"45.15656146329107%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dshnqwsvqguidghkyjxd_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.232</text><svg x=\"44.542925408526486%\" y=\"40\" height=\"20\" width=\"1.22727210952916%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">im</text> </svg></svg><line x1=\"45.770197518055646%\" x2=\"46.4075635416998%\" y1=\"60\" y2=\"60\" id=\"_fb_dshnqwsvqguidghkyjxd_ind_6\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"46.08888052987773%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dshnqwsvqguidghkyjxd_ind_6\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.121</text><svg x=\"45.770197518055646%\" y=\"40\" height=\"20\" width=\"0.6373660236441552%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">post</text> </svg></svg><line x1=\"46.4075635416998%\" x2=\"46.63090816844256%\" y1=\"60\" y2=\"60\" id=\"_fb_dshnqwsvqguidghkyjxd_ind_10\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"46.51923585507118%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dshnqwsvqguidghkyjxd_ind_10\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.042</text><svg x=\"46.4075635416998%\" y=\"40\" height=\"20\" width=\"0.22334462674275812%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">wrong</text> </svg></svg><line x1=\"46.63090816844256%\" x2=\"46.824284596573015%\" y1=\"60\" y2=\"60\" id=\"_fb_dshnqwsvqguidghkyjxd_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"46.727596382507784%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dshnqwsvqguidghkyjxd_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.037</text><svg x=\"46.63090816844256%\" y=\"40\" height=\"20\" width=\"0.1933764281304562%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><line x1=\"46.824284596573015%\" x2=\"46.82428503591185%\" y1=\"60\" y2=\"60\" id=\"_fb_dshnqwsvqguidghkyjxd_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"46.82428481624243%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_dshnqwsvqguidghkyjxd_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"46.824284596573015%\" y=\"40\" height=\"20\" width=\"4.393388337575743e-07%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"35.768883044398976%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"35.768883044398976%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"35.768883044398976%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"35.768883044398976%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"35.768883044398976%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"35.768883044398976%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"35.768883044398976%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"35.768883044398976%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"41.63971110766439%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"41.63971110766439%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"41.63971110766439%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"41.63971110766439%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"41.63971110766439%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"41.63971110766439%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"41.63971110766439%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"41.63971110766439%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"44.542925408526486%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"44.542925408526486%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"44.542925408526486%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"44.542925408526486%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"44.542925408526486%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"44.542925408526486%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"44.542925408526486%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"44.542925408526486%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"45.770197518055646%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"45.770197518055646%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"45.770197518055646%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"45.770197518055646%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"45.770197518055646%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"45.770197518055646%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"45.770197518055646%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"45.770197518055646%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"46.4075635416998%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"46.4075635416998%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"46.4075635416998%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"46.4075635416998%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"46.4075635416998%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"46.4075635416998%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"46.4075635416998%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"46.4075635416998%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"46.63090816844256%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"46.63090816844256%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"46.63090816844256%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"46.63090816844256%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"46.63090816844256%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"46.63090816844256%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"46.63090816844256%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"46.63090816844256%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"46.824284596573015%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"46.824284596573015%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"46.824284596573015%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"46.824284596573015%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"46.824284596573015%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"46.824284596573015%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"46.824284596573015%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"46.824284596573015%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"21.137501335047883%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"46.824285035911835%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"35.768883044398976%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"21.137501335047883%\" y=\"40\" height=\"20\" width=\"14.631381709351093%\" onmouseover=\"document.getElementById('_tp_dshnqwsvqguidghkyjxd_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_dshnqwsvqguidghkyjxd_ind_9').style.opacity = 1;document.getElementById('_fb_dshnqwsvqguidghkyjxd_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dshnqwsvqguidghkyjxd_ind_9').style.textDecoration = 'none';document.getElementById('_fs_dshnqwsvqguidghkyjxd_ind_9').style.opacity = 0;document.getElementById('_fb_dshnqwsvqguidghkyjxd_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"41.63971110766439%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"35.768883044398976%\" y=\"40\" height=\"20\" width=\"5.870828063265414%\" onmouseover=\"document.getElementById('_tp_dshnqwsvqguidghkyjxd_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_dshnqwsvqguidghkyjxd_ind_8').style.opacity = 1;document.getElementById('_fb_dshnqwsvqguidghkyjxd_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dshnqwsvqguidghkyjxd_ind_8').style.textDecoration = 'none';document.getElementById('_fs_dshnqwsvqguidghkyjxd_ind_8').style.opacity = 0;document.getElementById('_fb_dshnqwsvqguidghkyjxd_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"44.542925408526486%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"41.63971110766439%\" y=\"40\" height=\"20\" width=\"2.9032143008620963%\" onmouseover=\"document.getElementById('_tp_dshnqwsvqguidghkyjxd_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_dshnqwsvqguidghkyjxd_ind_2').style.opacity = 1;document.getElementById('_fb_dshnqwsvqguidghkyjxd_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dshnqwsvqguidghkyjxd_ind_2').style.textDecoration = 'none';document.getElementById('_fs_dshnqwsvqguidghkyjxd_ind_2').style.opacity = 0;document.getElementById('_fb_dshnqwsvqguidghkyjxd_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"45.770197518055646%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"44.542925408526486%\" y=\"40\" height=\"20\" width=\"1.22727210952916%\" onmouseover=\"document.getElementById('_tp_dshnqwsvqguidghkyjxd_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_dshnqwsvqguidghkyjxd_ind_1').style.opacity = 1;document.getElementById('_fb_dshnqwsvqguidghkyjxd_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dshnqwsvqguidghkyjxd_ind_1').style.textDecoration = 'none';document.getElementById('_fs_dshnqwsvqguidghkyjxd_ind_1').style.opacity = 0;document.getElementById('_fb_dshnqwsvqguidghkyjxd_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"46.4075635416998%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"45.770197518055646%\" y=\"40\" height=\"20\" width=\"0.6373660236441552%\" onmouseover=\"document.getElementById('_tp_dshnqwsvqguidghkyjxd_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_dshnqwsvqguidghkyjxd_ind_6').style.opacity = 1;document.getElementById('_fb_dshnqwsvqguidghkyjxd_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dshnqwsvqguidghkyjxd_ind_6').style.textDecoration = 'none';document.getElementById('_fs_dshnqwsvqguidghkyjxd_ind_6').style.opacity = 0;document.getElementById('_fb_dshnqwsvqguidghkyjxd_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"46.63090816844256%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"46.4075635416998%\" y=\"40\" height=\"20\" width=\"0.22334462674275812%\" onmouseover=\"document.getElementById('_tp_dshnqwsvqguidghkyjxd_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_dshnqwsvqguidghkyjxd_ind_10').style.opacity = 1;document.getElementById('_fb_dshnqwsvqguidghkyjxd_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dshnqwsvqguidghkyjxd_ind_10').style.textDecoration = 'none';document.getElementById('_fs_dshnqwsvqguidghkyjxd_ind_10').style.opacity = 0;document.getElementById('_fb_dshnqwsvqguidghkyjxd_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"46.824284596573015%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"46.63090816844256%\" y=\"40\" height=\"20\" width=\"0.1933764281304562%\" onmouseover=\"document.getElementById('_tp_dshnqwsvqguidghkyjxd_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_dshnqwsvqguidghkyjxd_ind_5').style.opacity = 1;document.getElementById('_fb_dshnqwsvqguidghkyjxd_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dshnqwsvqguidghkyjxd_ind_5').style.textDecoration = 'none';document.getElementById('_fs_dshnqwsvqguidghkyjxd_ind_5').style.opacity = 0;document.getElementById('_fb_dshnqwsvqguidghkyjxd_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"46.824284596573015%\" y=\"40\" height=\"20\" width=\"4.393388337575743e-07%\" onmouseover=\"document.getElementById('_tp_dshnqwsvqguidghkyjxd_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_dshnqwsvqguidghkyjxd_ind_0').style.opacity = 1;document.getElementById('_fb_dshnqwsvqguidghkyjxd_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_dshnqwsvqguidghkyjxd_ind_0').style.textDecoration = 'none';document.getElementById('_fs_dshnqwsvqguidghkyjxd_ind_0').style.opacity = 0;document.getElementById('_fb_dshnqwsvqguidghkyjxd_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_dshnqwsvqguidghkyjxd_ind_0'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dshnqwsvqguidghkyjxd_ind_0').style.opacity = 1; document.getElementById('_fs_dshnqwsvqguidghkyjxd_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dshnqwsvqguidghkyjxd_ind_0').style.opacity = 0; document.getElementById('_fs_dshnqwsvqguidghkyjxd_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.232</div\n",
|
|
" ><div id='_tp_dshnqwsvqguidghkyjxd_ind_1'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03042186571598325); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dshnqwsvqguidghkyjxd_ind_1').style.opacity = 1; document.getElementById('_fs_dshnqwsvqguidghkyjxd_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dshnqwsvqguidghkyjxd_ind_1').style.opacity = 0; document.getElementById('_fs_dshnqwsvqguidghkyjxd_ind_1').style.opacity = 0;\"\n",
|
|
" >im </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.549</div\n",
|
|
" ><div id='_tp_dshnqwsvqguidghkyjxd_ind_2'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.07771836007130117); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dshnqwsvqguidghkyjxd_ind_2').style.opacity = 1; document.getElementById('_fs_dshnqwsvqguidghkyjxd_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dshnqwsvqguidghkyjxd_ind_2').style.opacity = 0; document.getElementById('_fs_dshnqwsvqguidghkyjxd_ind_2').style.opacity = 0;\"\n",
|
|
" >grabbing </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.016</div\n",
|
|
" ><div id='_tp_dshnqwsvqguidghkyjxd_ind_3'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dshnqwsvqguidghkyjxd_ind_3').style.opacity = 1; document.getElementById('_fs_dshnqwsvqguidghkyjxd_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dshnqwsvqguidghkyjxd_ind_3').style.opacity = 0; document.getElementById('_fs_dshnqwsvqguidghkyjxd_ind_3').style.opacity = 0;\"\n",
|
|
" >a </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.164</div\n",
|
|
" ><div id='_tp_dshnqwsvqguidghkyjxd_ind_4'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.02253911665676371); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dshnqwsvqguidghkyjxd_ind_4').style.opacity = 1; document.getElementById('_fs_dshnqwsvqguidghkyjxd_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dshnqwsvqguidghkyjxd_ind_4').style.opacity = 0; document.getElementById('_fs_dshnqwsvqguidghkyjxd_ind_4').style.opacity = 0;\"\n",
|
|
" >minute </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.037</div\n",
|
|
" ><div id='_tp_dshnqwsvqguidghkyjxd_ind_5'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dshnqwsvqguidghkyjxd_ind_5').style.opacity = 1; document.getElementById('_fs_dshnqwsvqguidghkyjxd_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dshnqwsvqguidghkyjxd_ind_5').style.opacity = 0; document.getElementById('_fs_dshnqwsvqguidghkyjxd_ind_5').style.opacity = 0;\"\n",
|
|
" >to </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.121</div\n",
|
|
" ><div id='_tp_dshnqwsvqguidghkyjxd_ind_6'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.014656367597544028); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dshnqwsvqguidghkyjxd_ind_6').style.opacity = 1; document.getElementById('_fs_dshnqwsvqguidghkyjxd_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dshnqwsvqguidghkyjxd_ind_6').style.opacity = 0; document.getElementById('_fs_dshnqwsvqguidghkyjxd_ind_6').style.opacity = 0;\"\n",
|
|
" >post </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.04</div\n",
|
|
" ><div id='_tp_dshnqwsvqguidghkyjxd_ind_7'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dshnqwsvqguidghkyjxd_ind_7').style.opacity = 1; document.getElementById('_fs_dshnqwsvqguidghkyjxd_ind_7').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dshnqwsvqguidghkyjxd_ind_7').style.opacity = 0; document.getElementById('_fs_dshnqwsvqguidghkyjxd_ind_7').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.11</div\n",
|
|
" ><div id='_tp_dshnqwsvqguidghkyjxd_ind_8'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.1565458506634977); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dshnqwsvqguidghkyjxd_ind_8').style.opacity = 1; document.getElementById('_fs_dshnqwsvqguidghkyjxd_ind_8').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dshnqwsvqguidghkyjxd_ind_8').style.opacity = 0; document.getElementById('_fs_dshnqwsvqguidghkyjxd_ind_8').style.opacity = 0;\"\n",
|
|
" >feel </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-2.767</div\n",
|
|
" ><div id='_tp_dshnqwsvqguidghkyjxd_ind_9'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.40091107149930677); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dshnqwsvqguidghkyjxd_ind_9').style.opacity = 1; document.getElementById('_fs_dshnqwsvqguidghkyjxd_ind_9').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dshnqwsvqguidghkyjxd_ind_9').style.opacity = 0; document.getElementById('_fs_dshnqwsvqguidghkyjxd_ind_9').style.opacity = 0;\"\n",
|
|
" >greedy </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.042</div\n",
|
|
" ><div id='_tp_dshnqwsvqguidghkyjxd_ind_10'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dshnqwsvqguidghkyjxd_ind_10').style.opacity = 1; document.getElementById('_fs_dshnqwsvqguidghkyjxd_ind_10').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dshnqwsvqguidghkyjxd_ind_10').style.opacity = 0; document.getElementById('_fs_dshnqwsvqguidghkyjxd_ind_10').style.opacity = 0;\"\n",
|
|
" >wrong</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_dshnqwsvqguidghkyjxd_ind_11'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_dshnqwsvqguidghkyjxd_ind_11').style.opacity = 1; document.getElementById('_fs_dshnqwsvqguidghkyjxd_ind_11').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_dshnqwsvqguidghkyjxd_ind_11').style.opacity = 0; document.getElementById('_fs_dshnqwsvqguidghkyjxd_ind_11').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div><div id='_tp_apuwqawtzdakfvbqpgxu_output_5_zoom' style='display: none;'><svg width=\"100%\" height=\"80px\"><line x1=\"0\" y1=\"33\" x2=\"100%\" y2=\"33\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><line x1=\"52.2857856463431%\" y1=\"33\" x2=\"52.2857856463431%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"52.2857856463431%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-4</text><line x1=\"35.877326544757885%\" y1=\"33\" x2=\"35.877326544757885%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"35.877326544757885%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-5</text><line x1=\"19.468867443172673%\" y1=\"33\" x2=\"19.468867443172673%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"19.468867443172673%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6</text><line x1=\"68.69424474792831%\" y1=\"33\" x2=\"68.69424474792831%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"68.69424474792831%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-3</text><line x1=\"85.10270384951352%\" y1=\"33\" x2=\"85.10270384951352%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"85.10270384951352%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-2</text><line x1=\"88.05243850241776%\" y1=\"33\" x2=\"88.05243850241776%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"88.05243850241776%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1.82023</text><text x=\"88.05243850241776%\" y=\"27\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-1.82023</text><text x=\"88.05243850241776%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">base value</text><line x1=\"11.947561333497658%\" y1=\"33\" x2=\"11.947561333497658%\" y2=\"37\" style=\"stroke:rgb(150,150,150);stroke-width:1\" /><text x=\"11.947561333497658%\" y=\"27\" font-size=\"13px\" style=\"stroke:#ffffff;stroke-width:8px;\" font-weight=\"bold\" fill=\"rgb(255,255,255)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.45838</text><text x=\"11.947561333497658%\" y=\"27\" font-size=\"13px\" font-weight=\"bold\" fill=\"rgb(0,0,0)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">-6.45838</text><text x=\"11.947561333497658%\" y=\"10\" font-size=\"12px\" fill=\"rgb(120,120,120)\" dominant-baseline=\"bottom\" text-anchor=\"middle\">f<tspan baseline-shift=\"sub\" font-size=\"8px\">surprise</tspan>(inputs)</text><rect x=\"8.333333319659623%\" width=\"3.6142280138380296%\" y=\"40\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"9.253164887933409%\" x2=\"11.947561333497658%\" y1=\"60\" y2=\"60\" id=\"_fb_gwipmrynmsnsahjdzxlu_ind_4\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"10.600363110715534%\" y=\"71\" font-size=\"12px\" id=\"_fs_gwipmrynmsnsahjdzxlu_ind_4\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.164</text><svg x=\"9.253164887933409%\" y=\"40\" height=\"20\" width=\"2.6943964455642497%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">minute</text> </svg></svg><line x1=\"8.597116059816674%\" x2=\"9.253164887933409%\" y1=\"60\" y2=\"60\" id=\"_fb_gwipmrynmsnsahjdzxlu_ind_7\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.925140473875041%\" y=\"71\" font-size=\"12px\" id=\"_fs_gwipmrynmsnsahjdzxlu_ind_7\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.04</text><svg x=\"8.597116059816674%\" y=\"40\" height=\"20\" width=\"0.6560488281167345%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">i</text> </svg></svg><line x1=\"8.333338006981263%\" x2=\"8.597116059816674%\" y1=\"60\" y2=\"60\" id=\"_fb_gwipmrynmsnsahjdzxlu_ind_3\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.465227033398968%\" y=\"71\" font-size=\"12px\" id=\"_fs_gwipmrynmsnsahjdzxlu_ind_3\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.016</text><svg x=\"8.333338006981263%\" y=\"40\" height=\"20\" width=\"0.263778052835411%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">a</text> </svg></svg><line x1=\"8.333333319659623%\" x2=\"8.333338006981263%\" y1=\"60\" y2=\"60\" id=\"_fb_gwipmrynmsnsahjdzxlu_ind_11\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2; opacity: 0\"/><text x=\"8.333335663320444%\" y=\"71\" font-size=\"12px\" id=\"_fs_gwipmrynmsnsahjdzxlu_ind_11\" fill=\"rgb(255.0, 0.0, 81.08083606031792)\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">0.0</text><svg x=\"8.333333319659623%\" y=\"40\" height=\"20\" width=\"4.6873216401621676e-06%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(0,0)\"> <svg x=\"9.253164887933409%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"9.253164887933409%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"9.253164887933409%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"9.253164887933409%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"9.253164887933409%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"9.253164887933409%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"9.253164887933409%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"9.253164887933409%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.597116059816674%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.597116059816674%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.597116059816674%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.597116059816674%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.597116059816674%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.597116059816674%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.597116059816674%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.597116059816674%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"8.333338006981263%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"8.333338006981263%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(4,0)\"> <svg x=\"8.333338006981263%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(6,0)\"> <svg x=\"8.333338006981263%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"8.333338006981263%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-6,0)\"> <svg x=\"8.333338006981263%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"8.333338006981263%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"8.333338006981263%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255.0, 0.0, 81.08083606031792);stroke-width:2\" /> </svg></g><rect transform=\"translate(-8,0)\" x=\"11.947561333497658%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(255.0, 0.0, 81.08083606031792)\"/><g transform=\"translate(-11.5,0)\"> <svg x=\"8.333333319659623%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 10 -9 l 6 18 L 10 25 L 0 25 L 0 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-1.5,0)\"> <svg x=\"11.947561333497658%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"9.253164887933409%\" y=\"40\" height=\"20\" width=\"2.6943964455642497%\" onmouseover=\"document.getElementById('_tp_gwipmrynmsnsahjdzxlu_ind_4').style.textDecoration = 'underline';document.getElementById('_fs_gwipmrynmsnsahjdzxlu_ind_4').style.opacity = 1;document.getElementById('_fb_gwipmrynmsnsahjdzxlu_ind_4').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gwipmrynmsnsahjdzxlu_ind_4').style.textDecoration = 'none';document.getElementById('_fs_gwipmrynmsnsahjdzxlu_ind_4').style.opacity = 0;document.getElementById('_fb_gwipmrynmsnsahjdzxlu_ind_4').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"9.253164887933409%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.597116059816674%\" y=\"40\" height=\"20\" width=\"0.6560488281167345%\" onmouseover=\"document.getElementById('_tp_gwipmrynmsnsahjdzxlu_ind_7').style.textDecoration = 'underline';document.getElementById('_fs_gwipmrynmsnsahjdzxlu_ind_7').style.opacity = 1;document.getElementById('_fb_gwipmrynmsnsahjdzxlu_ind_7').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gwipmrynmsnsahjdzxlu_ind_7').style.textDecoration = 'none';document.getElementById('_fs_gwipmrynmsnsahjdzxlu_ind_7').style.opacity = 0;document.getElementById('_fb_gwipmrynmsnsahjdzxlu_ind_7').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-1.5,0)\"> <svg x=\"8.597116059816674%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 0 -9 l 6 18 L 0 25\" fill=\"none\" style=\"stroke:rgb(255, 195, 213);stroke-width:2\" /> </svg></g><rect x=\"8.333338006981263%\" y=\"40\" height=\"20\" width=\"0.263778052835411%\" onmouseover=\"document.getElementById('_tp_gwipmrynmsnsahjdzxlu_ind_3').style.textDecoration = 'underline';document.getElementById('_fs_gwipmrynmsnsahjdzxlu_ind_3').style.opacity = 1;document.getElementById('_fb_gwipmrynmsnsahjdzxlu_ind_3').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gwipmrynmsnsahjdzxlu_ind_3').style.textDecoration = 'none';document.getElementById('_fs_gwipmrynmsnsahjdzxlu_ind_3').style.opacity = 0;document.getElementById('_fb_gwipmrynmsnsahjdzxlu_ind_3').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"8.333333319659623%\" y=\"40\" height=\"20\" width=\"4.6873216401621676e-06%\" onmouseover=\"document.getElementById('_tp_gwipmrynmsnsahjdzxlu_ind_11').style.textDecoration = 'underline';document.getElementById('_fs_gwipmrynmsnsahjdzxlu_ind_11').style.opacity = 1;document.getElementById('_fb_gwipmrynmsnsahjdzxlu_ind_11').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gwipmrynmsnsahjdzxlu_ind_11').style.textDecoration = 'none';document.getElementById('_fs_gwipmrynmsnsahjdzxlu_ind_11').style.opacity = 0;document.getElementById('_fb_gwipmrynmsnsahjdzxlu_ind_11').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"11.947561333497658%\" width=\"79.71910518275813%\" y=\"40\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727); stroke-width:0; stroke:rgb(0,0,0)\" /><line x1=\"11.947561333497658%\" x2=\"57.3561524222143%\" y1=\"60\" y2=\"60\" id=\"_fb_gwipmrynmsnsahjdzxlu_ind_9\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"34.65185687785598%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_gwipmrynmsnsahjdzxlu_ind_9\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-2.767</text><svg x=\"11.947561333497658%\" y=\"40\" height=\"20\" width=\"45.40859108871664%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">greedy</text> </svg></svg><line x1=\"57.3561524222143%\" x2=\"75.5763066204062%\" y1=\"60\" y2=\"60\" id=\"_fb_gwipmrynmsnsahjdzxlu_ind_8\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"66.46622952131025%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_gwipmrynmsnsahjdzxlu_ind_8\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-1.11</text><svg x=\"57.3561524222143%\" y=\"40\" height=\"20\" width=\"18.2201541981919%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">feel</text> </svg></svg><line x1=\"75.5763066204062%\" x2=\"84.58645163948576%\" y1=\"60\" y2=\"60\" id=\"_fb_gwipmrynmsnsahjdzxlu_ind_2\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"80.08137912994599%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_gwipmrynmsnsahjdzxlu_ind_2\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.549</text><svg x=\"75.5763066204062%\" y=\"40\" height=\"20\" width=\"9.010145019079559%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">grabbing</text> </svg></svg><line x1=\"84.58645163948576%\" x2=\"88.39529884771484%\" y1=\"60\" y2=\"60\" id=\"_fb_gwipmrynmsnsahjdzxlu_ind_1\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"86.4908752436003%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_gwipmrynmsnsahjdzxlu_ind_1\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.232</text><svg x=\"84.58645163948576%\" y=\"40\" height=\"20\" width=\"3.808847208229082%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">im</text> </svg></svg><line x1=\"88.39529884771484%\" x2=\"90.37336856911386%\" y1=\"60\" y2=\"60\" id=\"_fb_gwipmrynmsnsahjdzxlu_ind_6\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"89.38433370841435%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_gwipmrynmsnsahjdzxlu_ind_6\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.121</text><svg x=\"88.39529884771484%\" y=\"40\" height=\"20\" width=\"1.9780697213990237%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">post</text> </svg></svg><line x1=\"90.37336856911386%\" x2=\"91.06652011345108%\" y1=\"60\" y2=\"60\" id=\"_fb_gwipmrynmsnsahjdzxlu_ind_10\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"90.71994434128247%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_gwipmrynmsnsahjdzxlu_ind_10\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.042</text><svg x=\"90.37336856911386%\" y=\"40\" height=\"20\" width=\"0.693151544337212%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">wrong</text> </svg></svg><line x1=\"91.06652011345108%\" x2=\"91.6666651527648%\" y1=\"60\" y2=\"60\" id=\"_fb_gwipmrynmsnsahjdzxlu_ind_5\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.36659263310794%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_gwipmrynmsnsahjdzxlu_ind_5\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.037</text><svg x=\"91.06652011345108%\" y=\"40\" height=\"20\" width=\"0.6001450393137304%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\">to</text> </svg></svg><line x1=\"91.6666651527648%\" x2=\"91.66666651625582%\" y1=\"60\" y2=\"60\" id=\"_fb_gwipmrynmsnsahjdzxlu_ind_0\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2; opacity: 0\"/><text x=\"91.66666583451031%\" y=\"71\" font-size=\"12px\" fill=\"rgb(0.0, 138.56128015770724, 250.76166088685727)\" id=\"_fs_gwipmrynmsnsahjdzxlu_ind_0\" style=\"opacity: 0\" dominant-baseline=\"middle\" text-anchor=\"middle\">-0.0</text><svg x=\"91.6666651527648%\" y=\"40\" height=\"20\" width=\"1.363491008987694e-06%\"> <svg x=\"0\" y=\"0\" width=\"100%\" height=\"100%\"> <text x=\"50%\" y=\"9\" font-size=\"12px\" fill=\"rgb(255,255,255)\" dominant-baseline=\"middle\" text-anchor=\"middle\"></text> </svg></svg><g transform=\"translate(-8,0)\"> <svg x=\"57.3561524222143%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"57.3561524222143%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"57.3561524222143%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"57.3561524222143%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"57.3561524222143%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"57.3561524222143%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"57.3561524222143%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"57.3561524222143%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"75.5763066204062%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"75.5763066204062%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"75.5763066204062%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"75.5763066204062%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"75.5763066204062%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"75.5763066204062%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"75.5763066204062%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"75.5763066204062%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"84.58645163948576%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"84.58645163948576%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"84.58645163948576%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"84.58645163948576%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"84.58645163948576%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"84.58645163948576%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"84.58645163948576%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"84.58645163948576%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"88.39529884771484%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"88.39529884771484%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"88.39529884771484%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"88.39529884771484%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"88.39529884771484%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"88.39529884771484%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"88.39529884771484%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"88.39529884771484%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"90.37336856911386%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"90.37336856911386%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"90.37336856911386%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"90.37336856911386%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"90.37336856911386%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"90.37336856911386%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"90.37336856911386%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"90.37336856911386%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.06652011345108%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.06652011345108%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.06652011345108%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.06652011345108%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.06652011345108%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.06652011345108%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.06652011345108%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.06652011345108%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-8,0)\"> <svg x=\"91.6666651527648%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-10,0)\"> <svg x=\"91.6666651527648%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-12,0)\"> <svg x=\"91.6666651527648%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-14,0)\"> <svg x=\"91.6666651527648%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(2,0)\"> <svg x=\"91.6666651527648%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(0,0)\"> <svg x=\"91.6666651527648%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-2,0)\"> <svg x=\"91.6666651527648%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><g transform=\"translate(-4,0)\"> <svg x=\"91.6666651527648%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(0.0, 138.56128015770724, 250.76166088685727);stroke-width:2\" /> </svg></g><rect transform=\"translate(0,0)\" x=\"11.947561333497658%\" y=\"40\" width=\"8\" height=\"18\" style=\"fill:rgb(0.0, 138.56128015770724, 250.76166088685727)\"/><g transform=\"translate(-6.0,0)\"> <svg x=\"91.66666651625579%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25 L 20 25 L 20 -9\" fill=\"#ffffff\" style=\"stroke:rgb(255,255,255);stroke-width:2\" /> </svg></g><g transform=\"translate(-6.0,0)\"> <svg x=\"57.3561524222143%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"11.947561333497658%\" y=\"40\" height=\"20\" width=\"45.40859108871664%\" onmouseover=\"document.getElementById('_tp_gwipmrynmsnsahjdzxlu_ind_9').style.textDecoration = 'underline';document.getElementById('_fs_gwipmrynmsnsahjdzxlu_ind_9').style.opacity = 1;document.getElementById('_fb_gwipmrynmsnsahjdzxlu_ind_9').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gwipmrynmsnsahjdzxlu_ind_9').style.textDecoration = 'none';document.getElementById('_fs_gwipmrynmsnsahjdzxlu_ind_9').style.opacity = 0;document.getElementById('_fb_gwipmrynmsnsahjdzxlu_ind_9').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"75.5763066204062%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"57.3561524222143%\" y=\"40\" height=\"20\" width=\"18.2201541981919%\" onmouseover=\"document.getElementById('_tp_gwipmrynmsnsahjdzxlu_ind_8').style.textDecoration = 'underline';document.getElementById('_fs_gwipmrynmsnsahjdzxlu_ind_8').style.opacity = 1;document.getElementById('_fb_gwipmrynmsnsahjdzxlu_ind_8').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gwipmrynmsnsahjdzxlu_ind_8').style.textDecoration = 'none';document.getElementById('_fs_gwipmrynmsnsahjdzxlu_ind_8').style.opacity = 0;document.getElementById('_fb_gwipmrynmsnsahjdzxlu_ind_8').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"84.58645163948576%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"75.5763066204062%\" y=\"40\" height=\"20\" width=\"9.010145019079559%\" onmouseover=\"document.getElementById('_tp_gwipmrynmsnsahjdzxlu_ind_2').style.textDecoration = 'underline';document.getElementById('_fs_gwipmrynmsnsahjdzxlu_ind_2').style.opacity = 1;document.getElementById('_fb_gwipmrynmsnsahjdzxlu_ind_2').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gwipmrynmsnsahjdzxlu_ind_2').style.textDecoration = 'none';document.getElementById('_fs_gwipmrynmsnsahjdzxlu_ind_2').style.opacity = 0;document.getElementById('_fb_gwipmrynmsnsahjdzxlu_ind_2').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"88.39529884771484%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"84.58645163948576%\" y=\"40\" height=\"20\" width=\"3.808847208229082%\" onmouseover=\"document.getElementById('_tp_gwipmrynmsnsahjdzxlu_ind_1').style.textDecoration = 'underline';document.getElementById('_fs_gwipmrynmsnsahjdzxlu_ind_1').style.opacity = 1;document.getElementById('_fb_gwipmrynmsnsahjdzxlu_ind_1').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gwipmrynmsnsahjdzxlu_ind_1').style.textDecoration = 'none';document.getElementById('_fs_gwipmrynmsnsahjdzxlu_ind_1').style.opacity = 0;document.getElementById('_fb_gwipmrynmsnsahjdzxlu_ind_1').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"90.37336856911386%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"88.39529884771484%\" y=\"40\" height=\"20\" width=\"1.9780697213990237%\" onmouseover=\"document.getElementById('_tp_gwipmrynmsnsahjdzxlu_ind_6').style.textDecoration = 'underline';document.getElementById('_fs_gwipmrynmsnsahjdzxlu_ind_6').style.opacity = 1;document.getElementById('_fb_gwipmrynmsnsahjdzxlu_ind_6').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gwipmrynmsnsahjdzxlu_ind_6').style.textDecoration = 'none';document.getElementById('_fs_gwipmrynmsnsahjdzxlu_ind_6').style.opacity = 0;document.getElementById('_fb_gwipmrynmsnsahjdzxlu_ind_6').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.06652011345108%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"90.37336856911386%\" y=\"40\" height=\"20\" width=\"0.693151544337212%\" onmouseover=\"document.getElementById('_tp_gwipmrynmsnsahjdzxlu_ind_10').style.textDecoration = 'underline';document.getElementById('_fs_gwipmrynmsnsahjdzxlu_ind_10').style.opacity = 1;document.getElementById('_fb_gwipmrynmsnsahjdzxlu_ind_10').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gwipmrynmsnsahjdzxlu_ind_10').style.textDecoration = 'none';document.getElementById('_fs_gwipmrynmsnsahjdzxlu_ind_10').style.opacity = 0;document.getElementById('_fb_gwipmrynmsnsahjdzxlu_ind_10').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><g transform=\"translate(-6.0,0)\"> <svg x=\"91.6666651527648%\" y=\"40\" height=\"18\" overflow=\"visible\" width=\"30\"> <path d=\"M 8 -9 l -6 18 L 8 25\" fill=\"none\" style=\"stroke:rgb(208, 230, 250);stroke-width:2\" /> </svg></g><rect x=\"91.06652011345108%\" y=\"40\" height=\"20\" width=\"0.6001450393137304%\" onmouseover=\"document.getElementById('_tp_gwipmrynmsnsahjdzxlu_ind_5').style.textDecoration = 'underline';document.getElementById('_fs_gwipmrynmsnsahjdzxlu_ind_5').style.opacity = 1;document.getElementById('_fb_gwipmrynmsnsahjdzxlu_ind_5').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gwipmrynmsnsahjdzxlu_ind_5').style.textDecoration = 'none';document.getElementById('_fs_gwipmrynmsnsahjdzxlu_ind_5').style.opacity = 0;document.getElementById('_fb_gwipmrynmsnsahjdzxlu_ind_5').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /><rect x=\"91.6666651527648%\" y=\"40\" height=\"20\" width=\"1.363491008987694e-06%\" onmouseover=\"document.getElementById('_tp_gwipmrynmsnsahjdzxlu_ind_0').style.textDecoration = 'underline';document.getElementById('_fs_gwipmrynmsnsahjdzxlu_ind_0').style.opacity = 1;document.getElementById('_fb_gwipmrynmsnsahjdzxlu_ind_0').style.opacity = 1;\" onmouseout=\"document.getElementById('_tp_gwipmrynmsnsahjdzxlu_ind_0').style.textDecoration = 'none';document.getElementById('_fs_gwipmrynmsnsahjdzxlu_ind_0').style.opacity = 0;document.getElementById('_fb_gwipmrynmsnsahjdzxlu_ind_0').style.opacity = 0;\" style=\"fill:rgb(0,0,0,0)\" /></svg><div align='center'><div style=\"color: rgb(120,120,120); font-size: 12px; margin-top: -15px;\">inputs</div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.0</div\n",
|
|
" ><div id='_tp_gwipmrynmsnsahjdzxlu_ind_0'\n",
|
|
" style='display: inline; background: rgba(54.70588235294111, 122.49411764705886, 213.40784313725496, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gwipmrynmsnsahjdzxlu_ind_0').style.opacity = 1; document.getElementById('_fs_gwipmrynmsnsahjdzxlu_ind_0').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gwipmrynmsnsahjdzxlu_ind_0').style.opacity = 0; document.getElementById('_fs_gwipmrynmsnsahjdzxlu_ind_0').style.opacity = 0;\"\n",
|
|
" ></div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.232</div\n",
|
|
" ><div id='_tp_gwipmrynmsnsahjdzxlu_ind_1'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.07771836007130117); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gwipmrynmsnsahjdzxlu_ind_1').style.opacity = 1; document.getElementById('_fs_gwipmrynmsnsahjdzxlu_ind_1').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gwipmrynmsnsahjdzxlu_ind_1').style.opacity = 0; document.getElementById('_fs_gwipmrynmsnsahjdzxlu_ind_1').style.opacity = 0;\"\n",
|
|
" >im </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.549</div\n",
|
|
" ><div id='_tp_gwipmrynmsnsahjdzxlu_ind_2'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.1959595959595959); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gwipmrynmsnsahjdzxlu_ind_2').style.opacity = 1; document.getElementById('_fs_gwipmrynmsnsahjdzxlu_ind_2').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gwipmrynmsnsahjdzxlu_ind_2').style.opacity = 0; document.getElementById('_fs_gwipmrynmsnsahjdzxlu_ind_2').style.opacity = 0;\"\n",
|
|
" >grabbing </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.016</div\n",
|
|
" ><div id='_tp_gwipmrynmsnsahjdzxlu_ind_3'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gwipmrynmsnsahjdzxlu_ind_3').style.opacity = 1; document.getElementById('_fs_gwipmrynmsnsahjdzxlu_ind_3').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gwipmrynmsnsahjdzxlu_ind_3').style.opacity = 0; document.getElementById('_fs_gwipmrynmsnsahjdzxlu_ind_3').style.opacity = 0;\"\n",
|
|
" >a </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.164</div\n",
|
|
" ><div id='_tp_gwipmrynmsnsahjdzxlu_ind_4'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.05407011289364243); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gwipmrynmsnsahjdzxlu_ind_4').style.opacity = 1; document.getElementById('_fs_gwipmrynmsnsahjdzxlu_ind_4').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gwipmrynmsnsahjdzxlu_ind_4').style.opacity = 0; document.getElementById('_fs_gwipmrynmsnsahjdzxlu_ind_4').style.opacity = 0;\"\n",
|
|
" >minute </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.037</div\n",
|
|
" ><div id='_tp_gwipmrynmsnsahjdzxlu_ind_5'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gwipmrynmsnsahjdzxlu_ind_5').style.opacity = 1; document.getElementById('_fs_gwipmrynmsnsahjdzxlu_ind_5').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gwipmrynmsnsahjdzxlu_ind_5').style.opacity = 0; document.getElementById('_fs_gwipmrynmsnsahjdzxlu_ind_5').style.opacity = 0;\"\n",
|
|
" >to </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.121</div\n",
|
|
" ><div id='_tp_gwipmrynmsnsahjdzxlu_ind_6'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.03830461477520309); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gwipmrynmsnsahjdzxlu_ind_6').style.opacity = 1; document.getElementById('_fs_gwipmrynmsnsahjdzxlu_ind_6').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gwipmrynmsnsahjdzxlu_ind_6').style.opacity = 0; document.getElementById('_fs_gwipmrynmsnsahjdzxlu_ind_6').style.opacity = 0;\"\n",
|
|
" >post </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.04</div\n",
|
|
" ><div id='_tp_gwipmrynmsnsahjdzxlu_ind_7'\n",
|
|
" style='display: inline; background: rgba(255.0, 13.0, 87.0, 0.00677361853832443); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gwipmrynmsnsahjdzxlu_ind_7').style.opacity = 1; document.getElementById('_fs_gwipmrynmsnsahjdzxlu_ind_7').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gwipmrynmsnsahjdzxlu_ind_7').style.opacity = 0; document.getElementById('_fs_gwipmrynmsnsahjdzxlu_ind_7').style.opacity = 0;\"\n",
|
|
" >i </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-1.11</div\n",
|
|
" ><div id='_tp_gwipmrynmsnsahjdzxlu_ind_8'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.40091107149930677); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gwipmrynmsnsahjdzxlu_ind_8').style.opacity = 1; document.getElementById('_fs_gwipmrynmsnsahjdzxlu_ind_8').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gwipmrynmsnsahjdzxlu_ind_8').style.opacity = 0; document.getElementById('_fs_gwipmrynmsnsahjdzxlu_ind_8').style.opacity = 0;\"\n",
|
|
" >feel </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-2.767</div\n",
|
|
" ><div id='_tp_gwipmrynmsnsahjdzxlu_ind_9'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 1.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gwipmrynmsnsahjdzxlu_ind_9').style.opacity = 1; document.getElementById('_fs_gwipmrynmsnsahjdzxlu_ind_9').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gwipmrynmsnsahjdzxlu_ind_9').style.opacity = 0; document.getElementById('_fs_gwipmrynmsnsahjdzxlu_ind_9').style.opacity = 0;\"\n",
|
|
" >greedy </div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>-0.042</div\n",
|
|
" ><div id='_tp_gwipmrynmsnsahjdzxlu_ind_10'\n",
|
|
" style='display: inline; background: rgba(30.0, 136.0, 229.0, 0.006773618538324436); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gwipmrynmsnsahjdzxlu_ind_10').style.opacity = 1; document.getElementById('_fs_gwipmrynmsnsahjdzxlu_ind_10').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gwipmrynmsnsahjdzxlu_ind_10').style.opacity = 0; document.getElementById('_fs_gwipmrynmsnsahjdzxlu_ind_10').style.opacity = 0;\"\n",
|
|
" >wrong</div></div><div style='display: inline; text-align: center;'\n",
|
|
" ><div style='display: none; color: #999; padding-top: 0px; font-size: 12px;'>0.0</div\n",
|
|
" ><div id='_tp_gwipmrynmsnsahjdzxlu_ind_11'\n",
|
|
" style='display: inline; background: rgba(230.2941176470614, 26.505882352939775, 102.59215686274348, 0.0); border-radius: 3px; padding: 0px'\n",
|
|
" onclick=\"\n",
|
|
" if (this.previousSibling.style.display == 'none') {\n",
|
|
" this.previousSibling.style.display = 'block';\n",
|
|
" this.parentNode.style.display = 'inline-block';\n",
|
|
" } else {\n",
|
|
" this.previousSibling.style.display = 'none';\n",
|
|
" this.parentNode.style.display = 'inline';\n",
|
|
" }\"\n",
|
|
" onmouseover=\"document.getElementById('_fb_gwipmrynmsnsahjdzxlu_ind_11').style.opacity = 1; document.getElementById('_fs_gwipmrynmsnsahjdzxlu_ind_11').style.opacity = 1;\"\n",
|
|
" onmouseout=\"document.getElementById('_fb_gwipmrynmsnsahjdzxlu_ind_11').style.opacity = 0; document.getElementById('_fs_gwipmrynmsnsahjdzxlu_ind_11').style.opacity = 0;\"\n",
|
|
" ></div></div></div></div></div>"
|
|
],
|
|
"text/plain": [
|
|
"<IPython.core.display.HTML object>"
|
|
]
|
|
},
|
|
"metadata": {},
|
|
"output_type": "display_data"
|
|
}
|
|
],
|
|
"source": [
|
|
"logit_explainer = shap.Explainer(shap.models.TransformersPipeline(pred, rescale_to_logits=True))\n",
|
|
"\n",
|
|
"logit_shap_values = logit_explainer(data[\"text\"][:3])\n",
|
|
"shap.plots.text(logit_shap_values)"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "markdown",
|
|
"metadata": {},
|
|
"source": [
|
|
"<hr>\n",
|
|
"Have an idea for more helpful examples? Pull requests that add to this documentation notebook are encouraged! "
|
|
]
|
|
}
|
|
],
|
|
"metadata": {
|
|
"kernelspec": {
|
|
"display_name": "Python 3",
|
|
"language": "python",
|
|
"name": "python3"
|
|
},
|
|
"language_info": {
|
|
"codemirror_mode": {
|
|
"name": "ipython",
|
|
"version": 3
|
|
},
|
|
"file_extension": ".py",
|
|
"mimetype": "text/x-python",
|
|
"name": "python",
|
|
"nbconvert_exporter": "python",
|
|
"pygments_lexer": "ipython3",
|
|
"version": "3.7.4"
|
|
}
|
|
},
|
|
"nbformat": 4,
|
|
"nbformat_minor": 4
|
|
}
|